summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCraig Scott <craig.scott@crascit.com>2020-05-18 12:15:42 (GMT)
committerKitware Robot <kwrobot@kitware.com>2020-05-18 12:15:54 (GMT)
commit6d9bc2d8cf41d651a6e8c9f6e3e6f5ab384d1f6a (patch)
tree00871b27800d179b9b1cc80d9a40bfcda2037eab
parent6c4bfb6e7f4998d2a163f78bde1dd1b982947c0a (diff)
parentcb8f7e3aad11887b57f8a1744146a2b1905df35e (diff)
downloadCMake-6d9bc2d8cf41d651a6e8c9f6e3e6f5ab384d1f6a.zip
CMake-6d9bc2d8cf41d651a6e8c9f6e3e6f5ab384d1f6a.tar.gz
CMake-6d9bc2d8cf41d651a6e8c9f6e3e6f5ab384d1f6a.tar.bz2
Merge topic 'find-doxygen-parallel-tests'
cb8f7e3aad FindDoxygen: Prevent tests from interfering with each other Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4756
-rw-r--r--Tests/FindDoxygen/SimpleTest/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/Tests/FindDoxygen/SimpleTest/CMakeLists.txt b/Tests/FindDoxygen/SimpleTest/CMakeLists.txt
index 332cecc..deec4fd 100644
--- a/Tests/FindDoxygen/SimpleTest/CMakeLists.txt
+++ b/Tests/FindDoxygen/SimpleTest/CMakeLists.txt
@@ -22,6 +22,7 @@ else()
message(FATAL_ERROR "Import target Doxygen::doxygen not defined")
endif()
+set(DOXYGEN_OUTPUT_DIRECTORY noArgs)
doxygen_add_docs(docsNoArgs)
if(NOT EXISTS "${PROJECT_BINARY_DIR}/Doxyfile.docsNoArgs")
message(FATAL_ERROR "Missing generated file: Doxyfile.docsNoArgs")
@@ -30,6 +31,7 @@ if(NOT TARGET docsNoArgs)
message(FATAL_ERROR "Target docsNoArgs not created")
endif()
+set(DOXYGEN_OUTPUT_DIRECTORY withArgs)
configure_file(spaces_in_name.cpp.in "spaces in name.cpp" COPYONLY)
doxygen_add_docs(docsWithArgs
"${CMAKE_CURRENT_BINARY_DIR}/spaces in name.cpp"