Browse Source

Fix for FindDoxygen with CMake 3.12

tempestpy_adaptions
Matthias Volk 5 years ago
parent
commit
2779d13d2c
  1. 5
      resources/doxygen/CMakeLists.txt

5
resources/doxygen/CMakeLists.txt

@ -1,3 +1,8 @@
# Enable operator IN_LIST to avoid problems with CMake version 3.12
if(POLICY CMP0057)
cmake_policy(SET CMP0057 NEW)
endif()
find_package(Doxygen)
# Add a target to generate API documentation with Doxygen
if(DOXYGEN_FOUND)

Loading…
Cancel
Save