Files
create/cMake/FreeCAD_Helpers/SetupDoxygen.cmake
2020-05-11 10:55:47 +02:00

13 lines
429 B
CMake

macro(SetupDoxygen)
# -------------------------------- Doxygen ----------------------------------
find_package(Doxygen)
if (NOT DOXYGEN_FOUND)
message("=====================================================\n"
"Doxygen not found, will not build documentation. \n"
"=====================================================\n")
endif(NOT DOXYGEN_FOUND)
endmacro(SetupDoxygen)