Jason T. Slack-Moehrle wrote: > Hello All, > > I am new to CMAKE and attempting to build an OpenGL app on OS X 10.8. > (I will be using other platforms as well) > > My CMakeLists.txt: > > cmake_minimum_required (VERSION 2.8.9) > > SET(CMAKE_C_COMPILER "clang") > SET(CMAKE_CXX_COMPILER "clang++")
Don't do that. Set CC and CXX before calling CMake: CC=clang CXX=clang++ cmake /path/to/source Eike --
signature.asc
Description: This is a digitally signed message part.
-- Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Follow this link to subscribe/unsubscribe: http://www.cmake.org/mailman/listinfo/cmake
