Added experimental ManifestAppendCustomString

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@7194 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2020-07-25 20:13:13 +00:00
parent 6c842ff1c3
commit 5ad1538a64
6 changed files with 72 additions and 3 deletions

View file

@ -2342,6 +2342,9 @@ int CEXEBuild::doCommand(int which_token, LineParser &line)
}
return PS_OK;
case TOK_MANIFEST_APPENDCUSTOMSTRING:
if (!manifest::addappendstring(line.gettoken_str(1), line.gettoken_str(2))) PRINTHELP();
return PS_OK;
case TOK_MANIFEST_DPIAWARE:
switch(line.gettoken_enum(1,_T("none\0notset\0false\0true\0system\0permonitor\0explorer\0")))
{