summaryrefslogtreecommitdiff
path: root/cmake/modules/GUDHI_doxygen_target.cmake
diff options
context:
space:
mode:
authorGard Spreemann <gspr@nonempty.org>2019-09-25 14:29:41 +0200
committerGard Spreemann <gspr@nonempty.org>2019-09-25 14:29:41 +0200
commit599d68cd916f533bdb66dd9e684dd5703233b6bb (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /cmake/modules/GUDHI_doxygen_target.cmake
parenta2e642954ae39025e041471d486ecbac25dff440 (diff)
Delete all files in order to incorporate upstream's move to git.
Diffstat (limited to 'cmake/modules/GUDHI_doxygen_target.cmake')
-rw-r--r--cmake/modules/GUDHI_doxygen_target.cmake19
1 files changed, 0 insertions, 19 deletions
diff --git a/cmake/modules/GUDHI_doxygen_target.cmake b/cmake/modules/GUDHI_doxygen_target.cmake
deleted file mode 100644
index 9e10e566..00000000
--- a/cmake/modules/GUDHI_doxygen_target.cmake
+++ /dev/null
@@ -1,19 +0,0 @@
-# add a target to generate API documentation with Doxygen
-find_package(Doxygen)
-if(DOXYGEN_FOUND)
- # configure_file(${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY)
-
- # starting from cmake 3.9 the usage of DOXYGEN_EXECUTABLE is deprecated
- if(TARGET Doxygen::doxygen)
- get_property(DOXYGEN_EXECUTABLE TARGET Doxygen::doxygen PROPERTY IMPORTED_LOCATION)
- endif()
-
- add_custom_target(doxygen ${DOXYGEN_EXECUTABLE} ${GUDHI_USER_VERSION_DIR}/Doxyfile
- WORKING_DIRECTORY ${GUDHI_USER_VERSION_DIR}
- COMMENT "Generating API documentation with Doxygen in ${GUDHI_USER_VERSION_DIR}/doc/html/" VERBATIM)
-
- if(TARGET user_version)
- # In dev version, doxygen target depends on user_version target. Not existing in user version
- add_dependencies(doxygen user_version)
- endif()
-endif(DOXYGEN_FOUND)