Merge pull request #100 from Vraiment/doxygen_fix

Fixed the paths in Doxyfile.in to support paths with spaces
This commit is contained in:
Dmitry Marakasov 2017-07-04 21:46:41 +03:00 committed by GitHub
commit 6c7338ab25

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