blob: 1919dc1d4cfe9089306e492b63d3b455edc999ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
project(test_include_dirs)
include(CTest)
include(GoogleTest)
enable_testing()
add_executable(configuration_gtest configuration_gtest.cpp)
target_compile_definitions(configuration_gtest PRIVATE $<$<CONFIG:Debug>:DEBUG=1>)
gtest_discover_tests(
configuration_gtest
PROPERTIES LABELS CONFIG
DISCOVERY_MODE PRE_TEST
)
|