Re: [CMake] Cmake configuration types and install targets

2006-02-13 Thread Brad King
Sylvain PRAT wrote: In fact, I meant duplicate copies for *release* versions : relwithdebufinfo, minsizerel and release. That is, is there a CMAKE_MINSIZE_POSTFIX, CMAKE_RELWITHDEBUG_POSTFIX or something like that? This was added a few weeks in the development version. It will be included in

Re: [CMake] Cmake configuration types and install targets

2006-02-12 Thread Sylvain PRAT
Brad King a écrit : Sylvain PRAT wrote: - how do you force configuration types in a CMakeLists.txt file to debug and release only? I seem to recall that this is not possible. Right? IF(CMAKE_CONFIGURATION_TYPES) SET(CMAKE_CONFIGURATION_TYPES Debug Release) ENDIF(CMAKE_CONFIGURATION_TYPES

Re: [CMake] Cmake configuration types and install targets

2006-02-10 Thread Brad King
Sylvain PRAT wrote: - how do you force configuration types in a CMakeLists.txt file to debug and release only? I seem to recall that this is not possible. Right? IF(CMAKE_CONFIGURATION_TYPES) SET(CMAKE_CONFIGURATION_TYPES Debug Release) ENDIF(CMAKE_CONFIGURATION_TYPES) - or how to avoid the

[CMake] Cmake configuration types and install targets

2006-02-09 Thread Sylvain PRAT
Hi, I have a project with default configuration types on vc8: debug, release, relwithdebuginfo and minsizerel. I use a debug postfix to avoid name clash between debug and release targets. But I have an install target rule, and all the 3 release configurations copy targets to the same filename