Skip to content

Commit

Permalink
Merge pull request #168 from petterreinholdtsen/debian-Fix-doxygen-IN…
Browse files Browse the repository at this point in the history
…PUT-paths-for-out-of-tree-build

Fix doxygen INPUT paths for out-of-tree build
  • Loading branch information
vespakoen authored Dec 10, 2024
2 parents 82ad251 + 5972248 commit 9e46d13
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ if(BUILD_DOC)
message(STATUS "dvips command DVIPS_CONVERTER not found but usually required.")
endif()

configure_file(${PROJECT_SOURCE_DIR}/Doxyfile ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile COPYONLY)
configure_file(${PROJECT_SOURCE_DIR}/Doxyfile ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY)
set(DOXY_CONFIG ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile)

execute_process(
Expand Down
12 changes: 6 additions & 6 deletions src/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -898,12 +898,12 @@ WARN_LOGFILE =
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
# Note: If this tag is empty the current directory is searched.

INPUT = "../src/manual.hpp" \
"../src/cutters" \
"../src/algo" \
"../src/geo" \
"../src/dropcutter" \
"../src/common"
INPUT = "@CMAKE_CURRENT_SOURCE_DIR@/manual.hpp" \
"@CMAKE_CURRENT_SOURCE_DIR@/src/cutters" \
"@CMAKE_CURRENT_SOURCE_DIR@/src/algo" \
"@CMAKE_CURRENT_SOURCE_DIR@/src/geo" \
"@CMAKE_CURRENT_SOURCE_DIR@/src/dropcutter" \
"@CMAKE_CURRENT_SOURCE_DIR@/src/common"

# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
Expand Down

0 comments on commit 9e46d13

Please sign in to comment.