In Codegear 2007, I'm trying to do some file deletion and copying during the pre-build and post-build events that involve folders named after the current configuration. In Visual Studio, this is easily done with the $(ConfigurationName) macro. Is there any equivalent to this in CodeGear? If not, is there a workaround I can use?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

I think what you're looking for $(Config). For example, in a prebuild event, you can add echo $(Config) and it will print a string like "Debug" or "Debug Build". I've tested it in Rad Studio 2010, but not in 2007. I believe they use the same configuration variable, though.

If that doesn't work, open a cbproj file in an editor and look for something like this:

<Config Condition="'$(Config)'==''">Debug</Config>

Whatever word appears instead of 'Config' there may give you a clue.

link|improve this answer
I can't believe I missed that. Thanks! – NorwegianWood Oct 24 '11 at 12:54
feedback

Your Answer

 
or
required, but never shown

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