Re: [CMake] Supressing Make, but not Generators

2010-03-03 Thread Smith Jack (Ext. - UGIS - UniCredit Group)
It's worryingly quiet on this subject. -Original Message- From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of Smith Jack (Ext. - UGIS - UniCredit Group) Sent: Tuesday, March 02, 2010 6:31 PM To: cmake@cmake.org Subject: [CMake] Supressing Make

Re: [CMake] Supressing Make, but not Generators

2010-03-03 Thread Hendrik Sattler
Of Smith Jack (Ext. - UGIS - UniCredit Group) Sent: Tuesday, March 02, 2010 6:31 PM To: cmake@cmake.org Subject: [CMake] Supressing Make, but not Generators I have the following scenario: I have a large project with several sub-projects. I always want CMake run Visual Studio/Nmake/Eclipse specific

Re: [CMake] Supressing Make, but not Generators

2010-03-03 Thread Smith Jack (Ext. - UGIS - UniCredit Group)
-Original Message- From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of Hendrik Sattler Sent: Wednesday, March 03, 2010 9:21 AM To: cmake@cmake.org Subject: Re: [CMake] Supressing Make, but not Generators Zitat von Smith Jack (Ext. - UGIS - UniCredit Group

Re: [CMake] Supressing Make, but not Generators

2010-03-03 Thread J Decker
...@unicreditgroup.de wrote: -Original Message- From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of Hendrik Sattler Sent: Wednesday, March 03, 2010 9:21 AM To: cmake@cmake.org Subject: Re: [CMake] Supressing Make, but not Generators Zitat von Smith Jack (Ext

Re: [CMake] Supressing Make, but not Generators

2010-03-03 Thread Smith Jack (Ext. - UGIS - UniCredit Group)
-Original Message- From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of J Decker Sent: Wednesday, March 03, 2010 9:34 AM To: cmake@cmake.org Subject: Re: [CMake] Supressing Make, but not Generators You can test for platform flags.. if( win32

Re: [CMake] Supressing Make, but not Generators

2010-03-03 Thread Michael Wild
] Supressing Make, but not Generators Zitat von Smith Jack (Ext. - UGIS - UniCredit Group) jack.smith.ext...@unicreditgroup.de: It's worryingly quiet on this subject. So, just exclude the target that won't build from ALL. I'm afraid you've lost me there. Do I do this within a CMakeLists.txt

Re: [CMake] Supressing Make, but not Generators

2010-03-03 Thread Eric Noulard
] Supressing Make, but not Generators You can test for platform flags.. if( win32 ) add_subdirectory( these_compile ) #... endif( win32 ) or add specific options that can be checked http://www.cmake.org/Wiki/CMake_Useful_Variables Thanks , but that doesn't solve the problem.  If I

Re: [CMake] Supressing Make, but not Generators

2010-03-03 Thread Smith Jack (Ext. - UGIS - UniCredit Group)
-Original Message- From: Eric Noulard [mailto:eric.noul...@gmail.com] Sent: Wednesday, March 03, 2010 10:51 AM To: Smith Jack (Ext. - UGIS - UniCredit Group) Cc: cmake@cmake.org Subject: Re: [CMake] Supressing Make, but not Generators 2010/3/3 Smith Jack (Ext. - UGIS - UniCredit

Re: [CMake] Supressing Make, but not Generators

2010-03-03 Thread Alexander Neundorf
To: cmake@cmake.org Subject: Re: [CMake] Supressing Make, but not Generators Zitat von Smith Jack (Ext. - UGIS - UniCredit Group) jack.smith.ext...@unicreditgroup.de: It's worryingly quiet on this subject. So, just exclude the target that won't build from ALL. I'm afraid you've lost

[CMake] Supressing Make, but not Generators

2010-03-02 Thread Smith Jack (Ext. - UGIS - UniCredit Group)
I have the following scenario: I have a large project with several sub-projects. I always want CMake run Visual Studio/Nmake/Eclipse specific generators for all the sub-projects so that I may edit any sub-project in my IDE of choice on the platform of choice. BUT when Make (Gmake, Nmake,