mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-04 05:09:53 +01:00
45a465713e
Also had to add new project to redirect CTest output, add separate batch scripts for AppVeyor because it doesn't handle multi-line batch scripts in yaml properly, and other helper scripts.
12 lines
416 B
CMake
12 lines
416 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
|
|
project(CatchCoverageHelper)
|
|
|
|
add_executable(CoverageHelper coverage-helper.cpp)
|
|
set_property(TARGET CoverageHelper PROPERTY CXX_STANDARD 11)
|
|
set_property(TARGET CoverageHelper PROPERTY CXX_STANDARD_REQUIRED ON)
|
|
set_property(TARGET CoverageHelper PROPERTY CXX_EXTENSIONS OFF)
|
|
if (MSVC)
|
|
target_compile_options( CoverageHelper PRIVATE /W4 /w44265 /WX /w44061 /w44062 )
|
|
endif()
|