mac: README: Forgot note about checking out 'next' when cloning cmake

heavy-resources
Martin Plicht 2012-03-22 10:25:19 +01:00
parent 0364e23deb
commit 5b98c4a2ae
1 changed files with 1 additions and 0 deletions

View File

@ -38,6 +38,7 @@ Situation with Xcode 4.3+
Xcode is now a self-contained application bundle which confuses CMake.
The CMake git repo contains necessary fixes but those haven't been incorporated into a new CMake release yet so to use those you have to build the cmake command line tool yourself by
* cloning git://cmake.org/cmake.git
* running git checkout next
* running ./configure, make and sudo make install
The project generation command I (Mortimer) used was `cmake -G Xcode -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++`, obviously specifying clang as the compiler. There is a related CMake option called USE_APPLE_CLANG which should be ON by default.
After that I had a proper Xcode 4.3 project.