Files
CMake/Tests/RunCMake/GoogleTest/GoogleTestXML.cmake
Craig Scott 09c38e8de6 Tests: Don't ask for things not required for GoogleTest
The test cases only need C or C++, but not both. The CTest module
is also not needed because we are not running a dashboard script.
2020-06-24 21:56:26 +10:00

11 lines
196 B
CMake

project(test_include_dirs LANGUAGES CXX)
include(GoogleTest)
enable_testing()
add_executable(xml_output xml_output.cpp)
gtest_discover_tests(
xml_output
XML_OUTPUT_DIR ${CMAKE_BINARY_DIR}
)