this is my first install program so i am a bit clumsy with this.
I have at least 4 packages (xp, vista)x(32, 64). i somehow glued the detection from available sources and now i need to do the Section part.
What do I do:
1) create c:\_builds
2) build everything into it, so that it has folders like
3) inside blackbox.nsi i assemble the build name, cca like thisblackbox.nsi
vs_vista_32
vs_vista_64
vs_xp_32
4) now for the problematic Section, i'd like to do something like this:StrCpy $1 $usr_win
StrCpy $2 $usr_bits
StrCpy $builddir "vs_$1_$2"
But this gives me error for nonexistent file (bbnote.exe).Section "BlackBox"
SetOutPath $INSTDIR
File $builddir\"bbnote.exe"
...
SectionEnd
So how to achieve it? Or do i have to take an another approach?
Best regards and many thanks for this great installer,
Mojmir