summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathieu Malaterre <mathieu.malaterre@gmail.com>2012-01-30 10:20:22 +0000
committerMathieu Malaterre <mathieu.malaterre@gmail.com>2012-01-30 10:20:22 +0000
commit21c38214ef357dd44f52cb32f677457f44a26d14 (patch)
tree4d97e9299bf5a8c916e3a1def26dda7128eee1c0
parent577fdbc8a50f8412be2f1b03619f34112544c580 (diff)
Fix doc target in cmake
-rw-r--r--doc/CMakeLists.txt11
1 files changed, 4 insertions, 7 deletions
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt
index da8dd42e..3fe0f923 100644
--- a/doc/CMakeLists.txt
+++ b/doc/CMakeLists.txt
@@ -1,21 +1,18 @@
# Generate target to build the html documentatiop through CMake tool
# After configure the project with the BUILD_DOC option you can run make html
# to generate the html documentation in the doc/html repository of the build folder.
-CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
# Try to find the doxygen tool
FIND_PACKAGE(Doxygen)
IF(DOXYGEN_FOUND)
-
# Configure the doxygen config file with variable from CMake and move it
- CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile-html.dox.cmake ${CMAKE_BINARY_DIR}/doc/Doxyfile-html.dox @ONLY)
+ CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.dox
+ ${CMAKE_BINARY_DIR}/doc/Doxyfile-html.dox @ONLY)
- # Configure the html mainpage file of the doxygen documentation with variable from CMake and move it
- CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/mainpage.dox.cmake ${CMAKE_BINARY_DIR}/doc/mainpage.dox)
-
# Generate new target to build the html documentation
- ADD_CUSTOM_TARGET(html ${DOXYGEN_EXECUTABLE} ${CMAKE_BINARY_DIR}/doc/Doxyfile-html.dox)
+ ADD_CUSTOM_TARGET(doc ALL
+ ${DOXYGEN_EXECUTABLE} ${CMAKE_BINARY_DIR}/doc/Doxyfile-html.dox)
ELSE(DOXYGEN_FOUND)