Archive: compile


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?)


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.


thanks...
thanks a lot for the info,
kichik