1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-09-01 06:30:52 +02:00

revert Doxyfile to orignin

my fault
This commit is contained in:
ClausKlein 2021-02-07 00:21:49 +01:00
parent 2825693080
commit a1356ca20d

View file

@ -3,21 +3,21 @@
# To create a new Doxyfile containing all available options, call `doxygen -g` # To create a new Doxyfile containing all available options, call `doxygen -g`
# Get Project name and version from CMake # Get Project name and version from CMake
PROJECT_NAME = Greeter PROJECT_NAME = @DOXYGEN_PROJECT_NAME@
PROJECT_NUMBER = 1.0 PROJECT_NUMBER = @DOXYGEN_PROJECT_VERSION@
# Add sources # Add sources
INPUT = /Users/clausklein/Workspace/cpp/ModernCppStarter/documentation/../README.md /Users/clausklein/Workspace/cpp/ModernCppStarter/documentation/../include /Users/clausklein/Workspace/cpp/ModernCppStarter/documentation/../documentation/pages INPUT = @DOXYGEN_PROJECT_ROOT@/README.md @DOXYGEN_PROJECT_ROOT@/include @DOXYGEN_PROJECT_ROOT@/documentation/pages
EXTRACT_ALL = YES EXTRACT_ALL = YES
RECURSIVE = YES RECURSIVE = YES
OUTPUT_DIRECTORY = doxygen OUTPUT_DIRECTORY = @DOXYGEN_OUTPUT_DIRECTORY@
# Use the README as a main page # Use the README as a main page
USE_MDFILE_AS_MAINPAGE = /Users/clausklein/Workspace/cpp/ModernCppStarter/documentation/../README.md USE_MDFILE_AS_MAINPAGE = @DOXYGEN_PROJECT_ROOT@/README.md
# set relative include paths # set relative include paths
FULL_PATH_NAMES = YES FULL_PATH_NAMES = YES
STRIP_FROM_PATH = /Users/clausklein/Workspace/cpp/ModernCppStarter/documentation/../include /Users/clausklein/Workspace/cpp/ModernCppStarter/documentation/.. STRIP_FROM_PATH = @DOXYGEN_PROJECT_ROOT@/include @DOXYGEN_PROJECT_ROOT@
# We use m.css to generate the html documentation, so we only need XML output # We use m.css to generate the html documentation, so we only need XML output
GENERATE_XML = YES GENERATE_XML = YES