mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 13:51:33 -06: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)
|