2021-09-14 00:13:48 +02:00
|
|
|
enable_language(CXX)
|
2020-08-30 11:54:41 +02:00
|
|
|
include(GoogleTest)
|
|
|
|
|
|
|
|
enable_testing()
|
|
|
|
|
2021-09-14 00:13:48 +02:00
|
|
|
include(xcode_sign_adhoc.cmake)
|
|
|
|
|
2020-08-30 11:54:41 +02:00
|
|
|
add_executable(configuration_gtest configuration_gtest.cpp)
|
2021-09-14 00:13:48 +02:00
|
|
|
xcode_sign_adhoc(configuration_gtest)
|
2020-08-30 11:54:41 +02:00
|
|
|
target_compile_definitions(configuration_gtest PRIVATE $<$<CONFIG:Debug>:DEBUG=1>)
|
|
|
|
|
|
|
|
gtest_discover_tests(
|
|
|
|
configuration_gtest
|
|
|
|
PROPERTIES LABELS CONFIG
|
|
|
|
DISCOVERY_MODE PRE_TEST
|
|
|
|
)
|