##// END OF EJS Templates
Adds read compatibility for local AMDA server...
Adds read compatibility for local AMDA server The local AMDA server uses another regex than the default server to read the units in x. We manage the compatibility by adding in the parser the possibility of testing several regexes to read a property

File last commit:

r17:d164eec363a1
r1154:98220c931c83
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()