Fixed the paths in Doxyfile.in to support paths with spaces

This commit is contained in:
Vraiment 2017-07-03 22:48:41 -07:00
parent 867219a0a1
commit c708f08db4

View File

@ -14,24 +14,24 @@ OUTPUT_DIRECTORY = doxygen
QUIET = YES QUIET = YES
# Process source and README file # Process source and README file
INPUT = @CMAKE_CURRENT_SOURCE_DIR@/SDL2pp \ INPUT = "@CMAKE_CURRENT_SOURCE_DIR@/SDL2pp" \
@CMAKE_CURRENT_SOURCE_DIR@/README.md "@CMAKE_CURRENT_SOURCE_DIR@/README.md"
# Recurse into subdirectories # Recurse into subdirectories
RECURSIVE = YES RECURSIVE = YES
# Exclude foreign files # Exclude foreign files
EXCLUDE = @CMAKE_CURRENT_SOURCE_DIR@/SDL2pp/external EXCLUDE = "@CMAKE_CURRENT_SOURCE_DIR@/SDL2pp/external"
# Examples (doesn't work atm) # Examples (doesn't work atm)
EXAMPLE_PATH = @CMAKE_CURRENT_SOURCE_DIR@/examples EXAMPLE_PATH = "@CMAKE_CURRENT_SOURCE_DIR@/examples"
# Filter through sed to remove badges which Doxygen fails to process properly # Filter through sed to remove badges which Doxygen fails to process properly
INPUT_FILTER = "sed -e '/^\[!\[/d'" INPUT_FILTER = "sed -e '/^\[!\[/d'"
FILTER_PATTERNS = *.md FILTER_PATTERNS = *.md
# README file is the main page # README file is the main page
USE_MDFILE_AS_MAINPAGE = @CMAKE_CURRENT_SOURCE_DIR@/README.md USE_MDFILE_AS_MAINPAGE = "@CMAKE_CURRENT_SOURCE_DIR@/README.md"
# Include timestamp # Include timestamp
HTML_TIMESTAMP = YES HTML_TIMESTAMP = YES