New to NSIS, and I have what no doubt is a totally dumb syntactical question.
If I have this definition of a constant:
Under what conditions would I need this construct, with the ${} to reference the value, as in:!define PRODUCT_NAME "Flibbin"
Name "${PRODUCT_NAME}"or this definition of a variable:Under what conditions would I need the ${} construct to reference the variable, when I can do something like:Var bInstallingForChrome
So, purely a syntactical question; what purpose does the ${} construct serve in NSIS script?StrCpy $bInstallingForChrome "1"
Thanks in advance!
DDoutelMS