##// END OF EJS Templates
Fix bug when creating two variables crash the app. ...
Fix bug when creating two variables crash the app. Variable as now invalid range and cache range at creation

File last commit:

r17:d164eec363a1
r756:a7f60f6512e6
Show More
compiler.cmake
14 lines | 440 B | text/x-cmake | CMakeLexer
Initialisation de l'archi cmake
r0 #
# compiler.cmake : configure the compilation flags
#
mperrinel
Mise à jour du cmake pour qu'il n'utilise plus les CXX_FLAGS avec un...
r17 message("Compiler id: ${CMAKE_CXX_COMPILER_ID}")
Ajout du support clang analyser. L'idée est de recompiler le projet avec ninja dans un build dédié pour effectuer l'analyse statique.
r11 IF("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
mperrinel
Mise à jour du cmake pour qu'il n'utilise plus les CXX_FLAGS avec un...
r17 MESSAGE("Compiler supported")
mperrinel
Initialisation de la configuration Linux
r14 ELSEIF("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
mperrinel
Mise à jour du cmake pour qu'il n'utilise plus les CXX_FLAGS avec un...
r17 MESSAGE("Compiler supported")
Ajout du support clang analyser. L'idée est de recompiler le projet avec ninja dans un build dédié pour effectuer l'analyse statique.
r11 ELSEIF("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
mperrinel
Mise à jour du cmake pour qu'il n'utilise plus les CXX_FLAGS avec un...
r17 INCLUDE("cmake/compiler/compiler_msvc.cmake")
Initialisation de l'archi cmake
r0 ELSE()
MESSAGE(FATAL_ERROR "Compiler not supported")
ENDIF()