mirror of
https://github.com/catchorg/Catch2.git
synced 2025-04-29 04:03:51 +00:00
9 lines
289 B
CMake
9 lines
289 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
project(CatchCoverageHelper LANGUAGES CXX)
|
|
|
|
add_executable(CoverageHelper coverage-helper.cpp)
|
|
target_compile_features(CoverageHelper PRIVATE cxx_std_11)
|
|
if(MSVC)
|
|
target_compile_options(CoverageHelper PRIVATE /W4 /w44265 /WX /w44061 /w44062)
|
|
endif()
|