suggestion on file usage?
It appears I can't use a variable as argument to the file instruction. For example, file $theFile.
I'm trying to conditionalize where the files to install are located like so:
Var /GLOBAL theFile
Var /GLOBAL Build
StrCpy $Build "Debug"
StrCpy $theFile "someDir\$Build\myprog.exe"
file $theFile
Does anyone has a suggestion on how to do that?
thanks in advance.