📅 2013-Dec-24 ⬩ ✍️ Ashwin Nanjappa ⬩ 🏷️ cmake, compiler ⬩ 📚 Archive
Sometimes you might need to use a different version of a default compiler (like gcc) or a different compiler (like Intel compiler) to build your code. Specifying this is easy in CMake. Add these lines to your CMakeLists.txt
:
SET(CMAKE_C_COMPILER /path/to/c/compiler)
SET(CMAKE_CXX_COMPILER /path/to/cpp/compiler)
Tried with: CMake 2.8.7 and Ubuntu 12.04 LTS