Var Path
Function .OnInit
StrCpy $Path "c:\test.txt"
FunctionEnd
Section
File "${Path}"
SectionEnd ...but obviously variables are for run-time use only. What I need is some sort of compile-time constant. I was hoping to be able to create an NSH file on my machine that sets the source path to "c:\source_files", and the build machine could have the same NSH file, but point it do d:\project\latest". Or maybe even something simpler?Any ideas?
TIA!