# This file describes the settings to be used by the documentation system
# doxygen (www.doxygen.org) for a project.
#
# All text after a double hash (##) is considered a comment and is placed in
# front of the TAG it is preceding.
#
# All text after a single hash (#) is considered a comment and will be ignored.
# The format is:
# TAG = value [value, ...]
# For lists, items can also be appended using:
# TAG += value [value, ...]
# Values that contain spaces should be placed between quotes (\" \").
#
# Note:
#
# Use doxygen to compare the used configuration file with the template
# configuration file:
# doxygen -x [configFile]
# Use doxygen to compare the used configuration file with the template
# configuration file without replacing the environment variables or CMake type
# replacement variables:
# doxygen -x_noenv [configFile]

# project metadata
DOCSET_BUNDLE_ID = dev.lizardbyte.libdisplaydevice
DOCSET_PUBLISHER_ID = dev.lizardbyte.libdisplaydevice.documentation
PROJECT_BRIEF = "C++ library to modify display devices."
PROJECT_NAME = libdisplaydevice

# project specific settings
DOT_GRAPH_MAX_NODES = 50
# IMAGE_PATH = ../docs/images
INCLUDE_PATH =

# TODO: Enable this when we have complete documentation
WARN_IF_UNDOCUMENTED = NO

# files and directories to process
USE_MDFILE_AS_MAINPAGE = ../README.md
INPUT = ../README.md \
        ../third-party/doxyconfig/docs/source_code.md \
        ../src
