##// END OF EJS Templates
remise au norme de cppcheck (mise à jour de la version de sortie xml de 1 vers 2)
remise au norme de cppcheck (mise à jour de la version de sortie xml de 1 vers 2)

File last commit:

r0:5cbbc595e8f3
r10:b8cb68884afd
Show More
compiler.cmake
11 lines | 308 B | text/x-cmake | CMakeLexer
#
# compiler.cmake : configure the compilation flags
#
IF(${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU")
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()