mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-13 01:39:58 -06:00
12 lines
197 B
CMake
12 lines
197 B
CMake
project(test_include_dirs)
|
|
include(CTest)
|
|
include(GoogleTest)
|
|
|
|
enable_testing()
|
|
|
|
add_executable(xml_output xml_output.cpp)
|
|
gtest_discover_tests(
|
|
xml_output
|
|
XML_OUTPUT_DIR ${CMAKE_BINARY_DIR}
|
|
)
|