mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-01-30 21:04:21 +00:00
This information is available when --gtest_output=json is supported, which it almost always is on GoogleTest >= 1.8.1.
12 lines
198 B
CMake
12 lines
198 B
CMake
enable_language(CXX)
|
|
include(GoogleTest)
|
|
|
|
enable_testing()
|
|
|
|
include(xcode_sign_adhoc.cmake)
|
|
|
|
add_executable(fake_gtest fake_gtest.cpp)
|
|
xcode_sign_adhoc(fake_gtest)
|
|
|
|
gtest_discover_tests(fake_gtest)
|