Click to See Complete Forum and Search --> : Re: Is there a project option for naming a lib?


Dave Lorde
March 29th, 1999, 08:07 AM
The way we do it is to add two .DEF files to the project source files, one for debug, and one for release. The debug one is called MyAppd.def. The IDE warns that only one can be in use at a time, but allows both to exist in the project.


Change the project settings for the release build so that the debug .DEF file is excluded from the build, and the release .DEF is included, and vice-versa for the debug build.


Dave