##// END OF EJS Templates
AJout de script helper pour démarrer les consoles (cmd, git-bash) avec le bon environnements dans windows
AJout de script helper pour démarrer les consoles (cmd, git-bash) avec le bon environnements dans windows

File last commit:

r11:50964fafb751
r13:6b14eae689f0
Show More
compiler.cmake
11 lines | 312 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()