1
0
Fork 0

Added MSVC guard

This commit is contained in:
worktycho 2014-06-27 11:07:03 +01:00
parent 9e1829e4e6
commit 833d328435
1 changed files with 6 additions and 4 deletions

View File

@ -27,10 +27,12 @@ endmacro()
macro(set_flags)
# Add coverage processing, if requested:
if (${CMAKE_BUILD_TYPE} STREQUAL "COVERAGE")
message("Including CodeCoverage")
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/lib/cmake-coverage/")
include(CodeCoverage)
if (NOT MSVC)
if (${CMAKE_BUILD_TYPE} STREQUAL "COVERAGE")
message("Including CodeCoverage")
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/lib/cmake-coverage/")
include(CodeCoverage)
endif()
endif()
# Add the preprocessor macros used for distinguishing between debug and release builds (CMake does this automatically for MSVC):