From: Wolfgang Bangerth Date: Mon, 3 Jul 2023 03:02:33 +0000 (-0600) Subject: Disable parsing 'requires' clauses on the 9.5 branch. X-Git-Tag: v9.5.0~3^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f608c10bdab62224f61a8505f17ed592a51987ec;p=dealii.git Disable parsing 'requires' clauses on the 9.5 branch. --- diff --git a/doc/doxygen/CMakeLists.txt b/doc/doxygen/CMakeLists.txt index 020d921b2b..60ac009e23 100644 --- a/doc/doxygen/CMakeLists.txt +++ b/doc/doxygen/CMakeLists.txt @@ -292,15 +292,15 @@ endif() # DEAL_II_CXX20_REQUIRES instead. 1.9.7 gets this right, but has other # bugs. It's unclear for versions inbetween. Err on the safe side, and # only make them visible to doxygen if we have at least 1.9.8. -if(${DOXYGEN_VERSION} VERSION_LESS 1.9.8) - message(STATUS "Suppressing 'requires' clause parsing because doxygen is too old") - file(APPEND "${CMAKE_CURRENT_BINARY_DIR}/options.dox" - " - PREDEFINED += DEAL_II_DOXYGEN_DO_NOT_PARSE_REQUIRES_CLAUSES=1 - PREDEFINED += DEAL_II_CXX20_REQUIRES(x)= - " - ) -endif() +# +# For the 9.5 release branch, we had some trouble with this logic. Simply +# disable parsing 'requires' clauses unconditionally on the release branch. +file(APPEND "${CMAKE_CURRENT_BINARY_DIR}/options.dox" + " + PREDEFINED += DEAL_II_DOXYGEN_DO_NOT_PARSE_REQUIRES_CLAUSES=1 + PREDEFINED += DEAL_II_CXX20_REQUIRES(x)= + " + )