##// END OF EJS Templates
The binary is build into the dist dir instead of the dist/build_type dir because the build itself make already the diffence bewteen the build type...
The binary is build into the dist dir instead of the dist/build_type dir because the build itself make already the diffence bewteen the build type The coverage inclusion depends now of the build_test inclusion

File last commit:

r17:d164eec363a1
r50:f3ae97a0dd83
Show More
compiler.cmake
14 lines | 440 B | text/x-cmake | CMakeLexer
#
# compiler.cmake : configure the compilation flags
#
message("Compiler id: ${CMAKE_CXX_COMPILER_ID}")
IF("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
MESSAGE("Compiler supported")
ELSEIF("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
MESSAGE("Compiler supported")
ELSEIF("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
INCLUDE("cmake/compiler/compiler_msvc.cmake")
ELSE()
MESSAGE(FATAL_ERROR "Compiler not supported")
ENDIF()