MisterC
29th July 2005 10:06 UTC
compile
I've two questions:
I would like to know if it's possible to compile myProject.nsi
from a DOS Command. (with using ,for example, makeNSISW)?
Moreover, I'm looking for a solution about to change myProjectVersion without modify myProject.nsi.
( my first idea is to use a file including the versionName but is there a better solution?)
kichik
29th July 2005 11:37 UTC
Use makensis instead of makensisw to compile in a command window.
What kind of a better solution do you have in mind for the project version? You can create a define from the command line of makensis using the /D switch. You can also use an environment variable like $%VERSION% in the script.
MisterC
29th July 2005 14:08 UTC
thanks...
thanks a lot for the info,
kichik