Re: [CMake] Is there a setting for Windows DLL file targets that's similar to CMAKE_EXE_LINKER_FLAGS ?

2012-04-28 Thread Petr Kmoch
Hi David, I believe what you're looking for is CMAKE_SHARED_LINKER_FLAGS. Petr On Sat, Apr 28, 2012 at 1:10 AM, david_bjorn...@agilent.com wrote: We here are trying to setup VS2010 for generating code coverage dataand for that I need to add a linker flag /PROFILE . For adding that to exe

[CMake] Is there a setting for Windows DLL file targets that's similar to CMAKE_EXE_LINKER_FLAGS ?

2012-04-27 Thread david_bjornbak
We here are trying to setup VS2010 for generating code coverage dataand for that I need to add a linker flag /PROFILE . For adding that to exe we have a cmake variable CMAKE_EXE_LINKER_FLAGS . But that works only for exe and you add a similar varibale for adding linker flags for DLLs. In