diff options
author | Craig Scott <craig.scott@crascit.com> | 2020-05-09 03:33:17 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2020-05-09 03:35:41 (GMT) |
commit | 683abe4366b5bf1149130177181fb81047f3a1dc (patch) | |
tree | 303bc70669ce464269d336d5aea91e0c00a2b5a1 /Tests | |
parent | a1f147b0b3b660511451d2377258cfd5c82845a9 (diff) | |
download | CMake-683abe4366b5bf1149130177181fb81047f3a1dc.zip CMake-683abe4366b5bf1149130177181fb81047f3a1dc.tar.gz CMake-683abe4366b5bf1149130177181fb81047f3a1dc.tar.bz2 |
FindDoxygen: Formatting-only indentation cleanup for test case
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/FindDoxygen/StampFile/CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Tests/FindDoxygen/StampFile/CMakeLists.txt b/Tests/FindDoxygen/StampFile/CMakeLists.txt index 2d06540..4bb0f3d 100644 --- a/Tests/FindDoxygen/StampFile/CMakeLists.txt +++ b/Tests/FindDoxygen/StampFile/CMakeLists.txt @@ -5,18 +5,18 @@ find_package(Doxygen REQUIRED) doxygen_add_docs(docsWithoutFilesWithStamp USE_STAMP_FILE) if(NOT EXISTS "${PROJECT_BINARY_DIR}/Doxyfile.docsWithoutFilesWithStamp") - message(FATAL_ERROR "Missing generated file: Doxyfile.docsWithoutFilesWithStamp") + message(FATAL_ERROR "Missing generated file: Doxyfile.docsWithoutFilesWithStamp") endif() if(NOT TARGET docsWithoutFilesWithStamp) - message(FATAL_ERROR "Target docsWithoutFilesWithStamp not created") + message(FATAL_ERROR "Target docsWithoutFilesWithStamp not created") endif() doxygen_add_docs(docsWithFilesWithStamp main.cpp main2.cpp USE_STAMP_FILE) if(NOT EXISTS "${PROJECT_BINARY_DIR}/Doxyfile.docsWithFilesWithStamp") - message(FATAL_ERROR "Missing generated file: Doxyfile.docsWithFilesWithStamp") + message(FATAL_ERROR "Missing generated file: Doxyfile.docsWithFilesWithStamp") endif() if(NOT TARGET docsWithFilesWithStamp) - message(FATAL_ERROR "Target docsWithFilesWithStamp not created") + message(FATAL_ERROR "Target docsWithFilesWithStamp not created") endif() |