Skip to content

Commit 2b8d86e

Browse files
committed
Merge pull request cpp-netlib#558 from u-foka/master
Fix generating doc when source path includes space(s)
2 parents d3e884f + a89ad1c commit 2b8d86e

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

Doxyfile.in

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,10 @@ FULL_PATH_NAMES = YES
128128
# If left blank the directory from which doxygen is run is used as the
129129
# path to strip.
130130

131-
STRIP_FROM_PATH = @CMAKE_CURRENT_SOURCE_DIR@/error/src/ \
132-
@CMAKE_CURRENT_SOURCE_DIR@/uri/src/ \
133-
@CMAKE_CURRENT_SOURCE_DIR@/http/src/ \
134-
@CMAKE_CURRENT_SOURCE_DIR@/concurrency/src/
131+
STRIP_FROM_PATH = "@CMAKE_CURRENT_SOURCE_DIR@/error/src/" \
132+
"@CMAKE_CURRENT_SOURCE_DIR@/uri/src/" \
133+
"@CMAKE_CURRENT_SOURCE_DIR@/http/src/" \
134+
"@CMAKE_CURRENT_SOURCE_DIR@/concurrency/src/"
135135

136136
# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
137137
# the path mentioned in the documentation of a class, which tells
@@ -651,10 +651,10 @@ WARN_LOGFILE =
651651
# directories like "/usr/src/myproject". Separate the files or directories
652652
# with spaces.
653653

654-
INPUT = @CMAKE_CURRENT_SOURCE_DIR@/error/ \
655-
@CMAKE_CURRENT_SOURCE_DIR@/uri/src/network/ \
656-
@CMAKE_CURRENT_SOURCE_DIR@/http/src/network/http/ \
657-
@CMAKE_CURRENT_SOURCE_DIR@/concurrency/src/network/
654+
INPUT = "@CMAKE_CURRENT_SOURCE_DIR@/error/" \
655+
"@CMAKE_CURRENT_SOURCE_DIR@/uri/src/network/" \
656+
"@CMAKE_CURRENT_SOURCE_DIR@/http/src/network/http/" \
657+
"@CMAKE_CURRENT_SOURCE_DIR@/concurrency/src/network/"
658658

659659
# This tag can be used to specify the character encoding of the source files
660660
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
@@ -686,7 +686,7 @@ RECURSIVE = YES
686686
# Note that relative paths are relative to the directory from which doxygen is
687687
# run.
688688

689-
EXCLUDE = @CMAKE_CURRENT_SOURCE_DIR@/uri/src/network/uri/detail
689+
EXCLUDE = "@CMAKE_CURRENT_SOURCE_DIR@/uri/src/network/uri/detail"
690690

691691
# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
692692
# directories that are symbolic links (a Unix file system feature) are excluded
@@ -849,10 +849,10 @@ COLS_IN_ALPHA_INDEX = 5
849849
# The IGNORE_PREFIX tag can be used to specify one or more prefixes that
850850
# should be ignored while generating the index headers.
851851

852-
IGNORE_PREFIX = @CMAKE_CURRENT_SOURCE_DIR@/error/src/ \
853-
@CMAKE_CURRENT_SOURCE_DIR@/uri/src/ \
854-
@CMAKE_CURRENT_SOURCE_DIR@/http/src/ \
855-
@CMAKE_CURRENT_SOURCE_DIR@/concurrency/src/
852+
IGNORE_PREFIX = "@CMAKE_CURRENT_SOURCE_DIR@/error/src/" \
853+
"@CMAKE_CURRENT_SOURCE_DIR@/uri/src/" \
854+
"@CMAKE_CURRENT_SOURCE_DIR@/http/src/" \
855+
"@CMAKE_CURRENT_SOURCE_DIR@/concurrency/src/"
856856

857857
#---------------------------------------------------------------------------
858858
# configuration options related to the HTML output

0 commit comments

Comments
 (0)