diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index 0c00e31a..d30e384e 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -9,7 +9,12 @@ IF(DOXYGEN_FOUND) # Configure the doxygen config file with variable from CMake and move it CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.dox.cmake.in ${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 @ONLY) + # Generate new target to build the html documentation ADD_CUSTOM_TARGET(doc ALL ${DOXYGEN_EXECUTABLE} ${CMAKE_BINARY_DIR}/doc/Doxyfile-html.dox) diff --git a/doc/Doxyfile.dox.cmake.in b/doc/Doxyfile.dox.cmake.in index 4b6f72dc..1bd970e8 100644 --- a/doc/Doxyfile.dox.cmake.in +++ b/doc/Doxyfile.dox.cmake.in @@ -104,7 +104,8 @@ INPUT = @OPENJPEG_SOURCE_DIR@/libopenjpeg \ @OPENJPEG_BINARY_DIR@/doc INPUT_ENCODING = UTF-8 FILE_PATTERNS = *.h \ - *.c + *.c \ + *.dox RECURSIVE = YES EXCLUDE = EXCLUDE_SYMLINKS = NO