Skip to content

Fix generating doc when source path includes space(s) #558

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

Merged
merged 1 commit into from
Sep 22, 2015
Merged
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
Fix generating doc when source path includes space(s)
  • Loading branch information
u-foka committed Sep 20, 2015
commit a89ad1c58f75bd3bc6c64ef12953d2f8aa499071
26 changes: 13 additions & 13 deletions Doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,10 @@ FULL_PATH_NAMES = YES
# If left blank the directory from which doxygen is run is used as the
# path to strip.

STRIP_FROM_PATH = @CMAKE_CURRENT_SOURCE_DIR@/error/src/ \
@CMAKE_CURRENT_SOURCE_DIR@/uri/src/ \
@CMAKE_CURRENT_SOURCE_DIR@/http/src/ \
@CMAKE_CURRENT_SOURCE_DIR@/concurrency/src/
STRIP_FROM_PATH = "@CMAKE_CURRENT_SOURCE_DIR@/error/src/" \
"@CMAKE_CURRENT_SOURCE_DIR@/uri/src/" \
"@CMAKE_CURRENT_SOURCE_DIR@/http/src/" \
"@CMAKE_CURRENT_SOURCE_DIR@/concurrency/src/"

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

INPUT = @CMAKE_CURRENT_SOURCE_DIR@/error/ \
@CMAKE_CURRENT_SOURCE_DIR@/uri/src/network/ \
@CMAKE_CURRENT_SOURCE_DIR@/http/src/network/http/ \
@CMAKE_CURRENT_SOURCE_DIR@/concurrency/src/network/
INPUT = "@CMAKE_CURRENT_SOURCE_DIR@/error/" \
"@CMAKE_CURRENT_SOURCE_DIR@/uri/src/network/" \
"@CMAKE_CURRENT_SOURCE_DIR@/http/src/network/http/" \
"@CMAKE_CURRENT_SOURCE_DIR@/concurrency/src/network/"

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

EXCLUDE = @CMAKE_CURRENT_SOURCE_DIR@/uri/src/network/uri/detail
EXCLUDE = "@CMAKE_CURRENT_SOURCE_DIR@/uri/src/network/uri/detail"

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

IGNORE_PREFIX = @CMAKE_CURRENT_SOURCE_DIR@/error/src/ \
@CMAKE_CURRENT_SOURCE_DIR@/uri/src/ \
@CMAKE_CURRENT_SOURCE_DIR@/http/src/ \
@CMAKE_CURRENT_SOURCE_DIR@/concurrency/src/
IGNORE_PREFIX = "@CMAKE_CURRENT_SOURCE_DIR@/error/src/" \
"@CMAKE_CURRENT_SOURCE_DIR@/uri/src/" \
"@CMAKE_CURRENT_SOURCE_DIR@/http/src/" \
"@CMAKE_CURRENT_SOURCE_DIR@/concurrency/src/"

#---------------------------------------------------------------------------
# configuration options related to the HTML output
Expand Down