In my .nsi I have right now:
Is it possible to define my source path (\\networkshare\Dev\NewProject) as a compile-time constant?Section "NewProject"
SetOutPath $INSTDIR\bin
File \\networkshare\Dev\NewProject\bin\*.exe
File \\networkshare\Dev\NewProject\bin\*.dll
SetOutPath $INSTDIR\share
File /r \\networkshare\Dev\NewProject\resources\*.*
SectionEnd
Section "NewProject Documentation"
SetOutPath $INSTDIR\doc
File \\networkshare\Dev\NewProject\documntation\*.*
SectionEnd