Re: [CMake] MSVC turn off RelWithDebInfo and MinSizeRel

2007-12-19 Thread David Cole
SET(CMAKE_CONFIGURATION_TYPES "Debug;Release") in your CMakeLists.txt. (Or just edit that value in CMakeSetup to change it in the cache.) If you do it with a simple set in the CMakeLists.txt then you will not see that reflected in the CMakeSetup GUI, but it will be in effect at generation time an

RE: [CMake] MSVC turn off RelWithDebInfo and MinSizeRel

2007-12-20 Thread Torsten Martinsen
-Torsten From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Cole Sent: 20 December 2007 01:32 To: Jesse Corrington Cc: cmake@cmake.org Subject: Re: [CMake] MSVC turn off RelWithDebInfo and MinSizeRel SET(CMAKE_CONFIGURATION_TYPES "Debug;Rel

RE: [CMake] MSVC turn off RelWithDebInfo and MinSizeRel

2007-12-20 Thread Josef Karthauser
t: 20 December 2007 08:11 To: David Cole Cc: cmake@cmake.org Subject: RE: [CMake] MSVC turn off RelWithDebInfo and MinSizeRel Unfortunately, this does not work. I just tried adding SET(CMAKE_CONFIGURATION_TYPES "Debug;RelWithDebInfo") at the top of my CMakeLists.txt, then delet

Re: [CMake] MSVC turn off RelWithDebInfo and MinSizeRel

2007-12-20 Thread David Cole
rhaul at > some point. Maybe that's already been done for the next major release? > > > > Joe > > > > *From:* [EMAIL PROTECTED] [mailto: > [EMAIL PROTECTED] *On Behalf Of *Torsten > Martinsen > *Sent:* 20 December 2007 08:11 > *To:* David Cole > *Cc:* c

RE: [CMake] MSVC turn off RelWithDebInfo and MinSizeRel

2007-12-20 Thread Josef Karthauser
e [mailto:[EMAIL PROTECTED] Sent: 20 December 2007 15:20 To: Josef Karthauser Cc: Torsten Martinsen; cmake@cmake.org Subject: Re: [CMake] MSVC turn off RelWithDebInfo and MinSizeRel I will see if I can find / figure out what I did to make this work -- I know I've done it before to eliminate all b

RE: [CMake] MSVC turn off RelWithDebInfo and MinSizeRel

2007-12-20 Thread Torsten Martinsen
David Cole wrote: > I will see if I can find / figure out what I did to make this work -- > I know I've done it before to eliminate all but one config type... > > How about this in the CMakeLists.txt file instead? (Force it into the > cache rather than using a simple set

Re: [CMake] MSVC turn off RelWithDebInfo and MinSizeRel

2007-12-21 Thread Jesse Corrington
The force set seemed to work when running the cmake GUI on windows, but didn't seem to work when running the command line cmake.exe, which is the way I need to do the generation. Jesse On Dec 20, 2007 11:35 PM, Torsten Martinsen <[EMAIL PROTECTED]> wrote: > David Cole

RE: [CMake] MSVC turn off RelWithDebInfo and MinSizeRel

2008-01-01 Thread Torsten Martinsen
Actually, I always use the command line. So I haven't tried it from the GUI. From: Jesse Corrington [mailto:[EMAIL PROTECTED] Sent: 21 December 2007 20:06 To: Torsten Martinsen Cc: David Cole; cmake@cmake.org Subject: Re: [CMake] MSVC turn off RelWithDebInf