##// END OF EJS Templates
Separate the initialization of the properties of the graph of the update of the units of the graph....
Separate the initialization of the properties of the graph of the update of the units of the graph. The initialization of the properties is carried out when adding a variable in the graph, the update of the units is carried out when loading the data of this variable

File last commit:

r17:d164eec363a1
r1308:41b7c6aab8be
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()