[CMake] How to turn off incremental linking for MSVC Debug and RelWithDebInfo targets?

Erwin Coumans erwin.coumans at gmail.com
Mon Feb 8 14:44:48 EST 2010


I've search a while and noticed several similar requests, but couldn't find
a solution that works.

http://www.mail-archive.com/cmake@cmake.org/msg19612.html

http://www.ogre3d.org/forums/viewtopic.php?f=4&t=45160

http://www.ogre3d.org/forums/viewtopic.php?t=28115&view=previous&sid=4671d7d566b65f8a4475bad1da67c78f


	STRING(REPLACE "INCREMENTAL:YES" "INCREMENTAL:NO" replacementFlags
${CMAKE_EXE_LINKER_FLAGS_DEBUG})
	message (${replacementFlags})
	SET(CMAKE_SHARED_LINKER_FLAGS_DEBUG ${replacementFlags})
		
		
	STRING(REPLACE "INCREMENTAL:YES" "INCREMENTAL:NO" replacementFlags2
${CMAKE_EXE_LINKER_FLAGS})
	message (${replacementFlags2})
	SET(CMAKE_EXE_LINKER_FLAGS ${replacementFlag2})
	

Is there a method using CMake 2.8 or CMake 2.8.1 that works?

Thanks a lot,

Erwin
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.cmake.org/pipermail/cmake/attachments/20100208/c7a6a353/attachment.htm>


More information about the CMake mailing list