mirror of
https://github.com/TheLartians/ModernCppStarter.git
synced 2025-08-31 22:21:13 +02:00
31 lines
1.2 KiB
Text
31 lines
1.2 KiB
Text
# Configuration for Doxygen for use with CMake
|
|
# Only options that deviate from the default are included
|
|
# To create a new Doxyfile containing all available options, call `doxygen -g`
|
|
|
|
# Get Project name and version from CMake
|
|
PROJECT_NAME = Greeter
|
|
PROJECT_NUMBER = 1.0
|
|
|
|
# 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
|
|
EXTRACT_ALL = YES
|
|
RECURSIVE = YES
|
|
OUTPUT_DIRECTORY = doxygen
|
|
|
|
# Use the README as a main page
|
|
USE_MDFILE_AS_MAINPAGE = /Users/clausklein/Workspace/cpp/ModernCppStarter/documentation/../README.md
|
|
|
|
# set relative include paths
|
|
FULL_PATH_NAMES = YES
|
|
STRIP_FROM_PATH = /Users/clausklein/Workspace/cpp/ModernCppStarter/documentation/../include /Users/clausklein/Workspace/cpp/ModernCppStarter/documentation/..
|
|
|
|
# We use m.css to generate the html documentation, so we only need XML output
|
|
GENERATE_XML = YES
|
|
GENERATE_HTML = NO
|
|
GENERATE_LATEX = NO
|
|
XML_PROGRAMLISTING = NO
|
|
CREATE_SUBDIRS = NO
|
|
|
|
# Include all directories, files and namespaces in the documentation
|
|
# Disable to include only explicitly documented objects
|
|
M_SHOW_UNDOCUMENTED = YES
|