vote up 12 vote down star
5

Delphi 2009 offers build configurations. If you create a new project you have the 2 default build configurations "Debug" and "Release".

Now I asked myself how to automate builds using MSBuild (which is supported by Delphi since version 2007).

You can start the "msbuild" command in the "RAD Studio Command Prompt" in some Delphi project directory and it will build the default build configuration (the last activated build configuration inside the Delphi IDE).

Now, I want to specify a certain (non-default) build configuration by a command line parameter.

The Delphi help asserts that the parameter is [/p:configuration=<configuration name>], which is wrong (Delphi 2009, Help Update 1)!

What is the right way?

flag

63% accept rate
I suggest reorganizing this post, with a question like "Why doesn't this command work <here is the command as described by Help> ? The help file says that it should work fine!!" Then, post your solution as an answer to your own question. – JosephStyons Feb 17 at 18:35
Count me in for the suggested rework too. – Scott W Feb 17 at 19:16
I reworked this into a question and answer. – Craig Stuntz Feb 17 at 19:27

1 Answer

vote up 9 vote down check

Now, if you want to change the build configuration you have to add the parameter
/p:config=<BUILD_CONFIG_NAME>

For example:

C:\Projects\TestDelphiApp001>msbuild /target:Build /p:config=Release

or

C:\Projects\TestDelphiApp001>msbuild /target:Build /p:config=Debug


Copied from original "question"; note community wiki.

link|flag

Your Answer

Get an OpenID
or

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