I have CMake project that I use to generate a set of Visual Studio project files. On the CMake side I explicitly turn off CMAKE_EXE_LINKER_FLAGS and CMAKE_EXE_LINKER_FLAGS_RELEASE by setting their values to the empty string "". When CMake generates the project files, I can open the .vcproj file and check to make sure that /DEBUG does not appear in the linker flags for the Release section of my program. However, when I open the solution in Visual Studio (2008 BTW), Visual Studio seems to automatically turn on /DEBUG in the linker settings for my program. I need /DEBUG to be turned off for my Release configuration. Does anyone know what is going on in this situation?
Thanks, Steve
_______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Follow this link to subscribe/unsubscribe: http://www.cmake.org/mailman/listinfo/cmake
