summaryrefslogtreecommitdiff
path: root/doc/CMakeLists.txt
diff options
context:
space:
mode:
authorMickael Savinaud <savmickael@users.noreply.github.com>2012-08-30 17:20:03 +0000
committerMickael Savinaud <savmickael@users.noreply.github.com>2012-08-30 17:20:03 +0000
commit3135642ff5c747d674b1a5347f4a3dd6352b6c75 (patch)
treea434de1167f2ed257556fc150bb49eb404c1b6fa /doc/CMakeLists.txt
parentd5bb3b0039159a61c7e9b2ae157a7b6ec2c0aef5 (diff)
[trunk] Remove CMake-language block-end command arguments
Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style. Thanks to Hans Johnson
Diffstat (limited to 'doc/CMakeLists.txt')
-rw-r--r--doc/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt
index 48f28813..7c86093a 100644
--- a/doc/CMakeLists.txt
+++ b/doc/CMakeLists.txt
@@ -11,7 +11,7 @@ if(DOXYGEN_FOUND)
${CMAKE_BINARY_DIR}/doc/Doxyfile-html.dox @ONLY)
# Configure the html mainpage file of the doxygen documentation with variable
- # from CMake and move it
+ # from CMake and move it
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/mainpage.dox.cmake
${CMAKE_BINARY_DIR}/doc/mainpage.dox @ONLY)
@@ -19,8 +19,8 @@ if(DOXYGEN_FOUND)
add_custom_target(doc ALL
${DOXYGEN_EXECUTABLE} ${CMAKE_BINARY_DIR}/doc/Doxyfile-html.dox)
-else(DOXYGEN_FOUND)
+else()
message(STATUS "Doxygen not found, we cannot generate the documentation")
-endif(DOXYGEN_FOUND)
+endif()