Compare commits

..

No commits in common. "5e668b7e966c389eaed896638153abed2689c85d" and "d254803ed1a27f734b6a5b2d1a52b74cdf56a525" have entirely different histories.

2 changed files with 4 additions and 4 deletions

View File

@ -11,9 +11,9 @@ if (PYTHONINTERP_FOUND)
find_python_module(breathe)
find_python_module(recommonmark)
if(DOXYGEN_FOUND AND PERL_FOUND AND PYTHONINTERP_FOUND AND SPHINX_FOUND AND breathe_FOUND AND recommonmark_FOUND)
set(BREATHE_FOUND ON CACHE STRING "Breathe documentation generator enabled" FORCE)
set(BREATHE_FOUND ON CACHE FORCE)
else()
set(BREATHE_FOUND OFF CACHE STRING "Breathe documentation generator disabled" FORCE)
set(BREATHE_FOUND OFF CACHE FORCE)
endif()
else()
set(BREATHE_FOUND OFF CACHE FORCE)

View File

@ -3,9 +3,9 @@ set_property(CACHE DOXYGEN_FOUND PROPERTY STRINGS ON OFF AUTO)
find_package(Doxygen)
if (DOXYGEN_FOUND)
set(DOXYGEN_FOUND ON CACHE STRING "Doxygen documentation generator enabled" FORCE)
set(DOXYGEN_FOUND ON CACHE FORCE)
else()
set(DOXYGEN_FOUND OFF CACHE STRING "Doxygen documentation generator disabled" FORCE)
set(DOXYGEN_FOUND OFF CACHE FORCE)
endif()