##// END OF EJS Templates
Added static plugin support...
Added static plugin support In case of fully static exe even plugins must be static to allow single file executable. Small fix, when using resources in app from library they must be initialized with Q_INIT_RESOURCE. Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r17:d164eec363a1
r1156:247dc18789c6
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()