From: Wolfgang Bangerth Date: Thu, 6 Apr 2017 14:49:33 +0000 (-0600) Subject: Be more specific which files we feed to doxygen. X-Git-Tag: v9.0.0-rc1~1732^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=08cf966985829e7643a46c2fd54371d3b245c78f;p=dealii.git Be more specific which files we feed to doxygen. Specifically, make sure that we exclude the doc/news/changes/README.md file. --- diff --git a/doc/doxygen/CMakeLists.txt b/doc/doxygen/CMakeLists.txt index 4eafc72bfb..c8711f336b 100644 --- a/doc/doxygen/CMakeLists.txt +++ b/doc/doxygen/CMakeLists.txt @@ -129,11 +129,15 @@ SET(_doxygen_input ${CMAKE_CURRENT_SOURCE_DIR}/headers/ ) +file(GLOB _changelog_files + ${CMAKE_SOURCE_DIR}/doc/news/*.h + ) + LIST(APPEND _doxygen_input ${CMAKE_SOURCE_DIR}/include/ ${CMAKE_SOURCE_DIR}/source/ ${CMAKE_BINARY_DIR}/include/ - ${CMAKE_SOURCE_DIR}/doc/news/ + ${_changelog_files} ${CMAKE_BINARY_DIR}/doc/news/ ${CMAKE_CURRENT_BINARY_DIR}/tutorial/tutorial.h )