vote up 2 vote down star
1

A common mistake when configuring the compilation/linking/etc. settings in VC++ 2008 is to set them in Release but not Debug (or vice versa) rather than setting them for "All Configurations". Any suggestions on how to avoid this kind of mistake?

Some beginnings of ideas that I have:

  • Find a way to make VC++ go to the "All Configurations" settings by default when you open the property pages rather than the active (Release / Debug) settings.

  • Have a VB script that can be run (inside or outside VC++) to check the project settings and raise any inconsistencies detected.

flag

3 Answers

vote up 1 vote down check

vb or js script is perfectly ok for the task. Just dont forget to teach it that some settings should differ, such as preprocessor defines, or used runtime libraries.

link|flag
Thanks, not perfect (would prefer a preventative or automatic solution), but this is what I'll go for... – awm Dec 19 '08 at 15:12
It might work automatically, say, as prebuild step, when difference is detetcted it might report the difference and ask which configuration is to propagate on the other configuration(s). I assume at this point the build should be considered failed and restarted manually. – eugensk00 Dec 25 '08 at 7:20
vote up 1 vote down

We recently switched to Qt's build (qmake) tool which is capable of generating both makefiles (used in batch product build) as well as project (.vcproj) files when working on individual projects.

The nice thing about it is that we have enforced all settings one could ever wish for beforehand once for all available build targets (i.e. we have debug, release and non optimized release) and have forgotten about manipulating settings ever since.

link|flag
vote up 1 vote down

You can generate .vsproj files with CMake or Scons or similar cross platform build system.

link|flag

Your Answer

Get an OpenID
or

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