vote up 1 vote down star

It was suggested in the IS newsgroup to use /D= but using the iscc.exe that came with version 5.2.3 I get an "Unknown option:" error.

Then in the script, how do you use the value of the command line parameter?

flag

50% accept rate
Thanks all for the answers. All were helpful. I hate to pick out just one as the preferred answer. – AlanKley Feb 4 at 23:52

3 Answers

vote up 3 vote down

You do, as MicSim says, need the preprocessor. It's included in the latest ISPack. Once it's installed, iscc supports /D.

You can then use the values defined like this (assuming you'd done /DVERSION_NAME=1.23):

AppVerName=MyApplication v{#VERSION_NAME}
link|flag
vote up 1 vote down

From the Inno Setup helpfile:

Inno Setup Preprocessor replaces the standard Inno Setup Command Line Compiler (ISCC.exe) by an extended version. This extended version provides extra parameters to control Inno Setup Preprocessor.

The "extra parameters" include the /d option.

link|flag
vote up 1 vote down

Looks like this thread is just what you're searching for: Link

You will need the IS preprocessor.

link|flag
Thanks, I should have done a more general search instead of reyling on the Inno Setup forums! That thread had some good examples – AlanKley Feb 4 at 23:51
Yes, it's amazing how much things you can find with Google. – MicSim Feb 5 at 20:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.