##// END OF EJS Templates
Initialisation de la configuration Linux
Initialisation de la configuration Linux

File last commit:

r14:5bce99742c6f
r14:5bce99742c6f
Show More
compiler.cmake
14 lines | 461 B | text/x-cmake | CMakeLexer
#
# compiler.cmake : configure the compilation flags
#
message("Compiler id: ${CMAKE_CXX_COMPILER_ID}")
IF("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
INCLUDE("cmake/compiler/compiler_gnu.cmake")
ELSEIF("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
INCLUDE("cmake/compiler/compiler_gnu.cmake")
ELSEIF("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
INCLUDE("cmake/compiler/compiler_msvc.cmake")
ELSE()
MESSAGE(FATAL_ERROR "Compiler not supported")
ENDIF()