Skip to content

Commit

Permalink
move doxygen dir
Browse files Browse the repository at this point in the history
  • Loading branch information
bgranzow committed Oct 26, 2023
1 parent cd1dc26 commit d35ae9e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 16 deletions.
17 changes: 1 addition & 16 deletions doc/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1 @@
find_package(Doxygen)

if(NOT DOXYGEN_FOUND)
return()
endif()

configure_file(
${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in
${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY
)

add_custom_target(dox
${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating Doxygen documentation" VERBATIM
)
add_subdirectory(doxygen)
File renamed without changes.
16 changes: 16 additions & 0 deletions doc/doxygen/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
find_package(Doxygen)

if(NOT DOXYGEN_FOUND)
return()
endif()

configure_file(
${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in
${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY
)

add_custom_target(dox
${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating Doxygen documentation" VERBATIM
)
File renamed without changes.

0 comments on commit d35ae9e

Please sign in to comment.