Re: [CMake] CMake 2.8.8 : Reproducible Crash in Mac OS X 10.8

2012-08-07 Thread Andreas Pakulat
Hi, On Wed, Aug 8, 2012 at 7:32 AM, Jerry Krinock wrote: > Hello, > > I have been using CMake for a couple years, invoked from a script, to build > an Xcode project in Mac OS X. Most recently, I have successfully used CMake > 2.8.7 on Mac OS X 10.7. > > Upon upgrading to CMake 2.8.8 and Mac OS

[CMake] CMake 2.8.8 : Reproducible Crash in Mac OS X 10.8

2012-08-07 Thread Jerry Krinock
Hello, I have been using CMake for a couple years, invoked from a script, to build an Xcode project in Mac OS X. Most recently, I have successfully used CMake 2.8.7 on Mac OS X 10.7. Upon upgrading to CMake 2.8.8 and Mac OS X 10.8, CMake crashes raises an exception and crashes repeatably. Cr

[CMake] "UTILITY" library?

2012-08-07 Thread Klaim - Joël Lamotte
Hi, I am using include_external_msproject() to add my Intel Threading Building Blocks MSVC project file (that have been converted from VS200x to VS2012 through a script). All is fine, I see the converted project in my solution with no problem. However, when I add the project in the target links of

Re: [CMake] How to compare booleans

2012-08-07 Thread David Cole
EQUAL is meant for exact numeric equal comparison (i.e. -- works with numbers only, not meant to work with booleans) One possibility is: if(_COMPILE_RESULT) set(_COMPILE_RESULT 1) else() set(_COMPILE_RESULT 0) endif() if(SHOULD_COMPILE) set(SHOULD_COMPILE 1) else() set(SHOULD_COMPILE 0)

Re: [CMake] "include_directories" help

2012-08-07 Thread David Cole
On Thu, Aug 2, 2012 at 4:09 PM, John L. Poole wrote: > I'm either completely misunderstanding how the CMake command > "include_directories" works > or something in my Windows MinGW/CMake (2.8.8) is not working. > > BACKGROUND: > > http://www.cmake.org/cmake/help/v2.8.8/cmake.html#command:include_d