Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix doxygen INPUT paths for out-of-tree build #168

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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