vote up 1 vote down star
1

Hi,

Is it possible to add build events only for a specific build configuration in Delphi 2007 ?

I use 2007 but would be interested in what you can do in 2009 also.

Cheers Sam

flag

71% accept rate

1 Answer

vote up 3 vote down check

No.

You can have (resource) compiler settings for each build configuration in Delphi 2009. But this does not apply to the other settings.

You can fake it, but it takes some time:

  1. In the prebuild, delete the conf*.dcu files.
  2. Define DEBUG for the debug configuration.
  3. Add the following to the project file:

Code:

uses
  ..
{$IFDEF DEBUG}
  confDebug,
{$ELSE}
  confRelease,
{$ENDIF}
  ..
  1. Now let the post build step check for the existence of confDebug.dcu or confRelease.dcu to find which build configuration is used.

It is a bit cumbersome, but you can do what you want.

link|flag
Short answer: "no". Longer answer: "yes". :-) – Wouter van Nifterick Mar 30 at 4:07
There is a difference between a solution and a hack. But maybe I'm a nitpick ;-). – Gamecat Mar 30 at 6:54
Thanks Gamecat. Not a nice solution, i'm suprised delphi doesn't support different build events based on cofigurations but thanks very much for the information. – SamH Mar 30 at 7:59
@samhowley, codegear is busy processing the backlog of the borland "lack of attention" period. I have hope that features like this are fixed in future versions. (Their plan was to fix about 100 minor anoyances). – Gamecat Mar 30 at 8:07

Your Answer

Get an OpenID
or

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