Hello, Is there an easy way to build a debug version and a release version for a project, the same way you can do for instance in Developer Studio? Reason for this question: keep in or kick out for instance ASSERTS in your code in a comfortable way... Maybe other stuff too... Rgds, Geert
I am using a define to activate or deactivate the code I only want in the "debug" version. Then you just change this define to switch between the 2 versions (conditional compiling). Holger