Hi guys,
I just want to know how can I change $OUTDIR var to path outside installer path?
I tried to use this dummy code but it didn't work! it gave me "..\src" where is should be c:\src where the installer sited in c:\bin
I just want to know how can I change $OUTDIR var to path outside installer path?
I tried to use this dummy code but it didn't work! it gave me "..\src" where is should be c:\src where the installer sited in c:\bin
code:
SetOutPath $EXEDIR
SetOutPath ..\src
MessageBox MB_OK $OUTDIR
Comment