GoogleTestXML.cmake 197 B

1234567891011
  1. project(test_include_dirs)
  2. include(CTest)
  3. include(GoogleTest)
  4. enable_testing()
  5. add_executable(xml_output xml_output.cpp)
  6. gtest_discover_tests(
  7. xml_output
  8. XML_OUTPUT_DIR ${CMAKE_BINARY_DIR}
  9. )