8a5de432e8
Most of the file is not changed from some sensible default anyway, so we can store this in the template directory and have a much more manageable local file which just contains the relevant changes.
55 lines
2.6 KiB
Plaintext
55 lines
2.6 KiB
Plaintext
# The INPUT tag can be used to specify the files and/or directories that contain
|
|
# documented source files. You may enter file names like "myfile.cpp" or
|
|
# directories like "/usr/src/myproject". Separate the files or directories
|
|
# with spaces.
|
|
|
|
INPUT = @PROJECT_SOURCE_DIR@/opm/core/ \
|
|
@PROJECT_SOURCE_DIR@/tutorials/ \
|
|
@PROJECT_SOURCE_DIR@/examples/
|
|
|
|
# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
|
|
# can be used to strip a user-defined part of the path. Stripping is
|
|
# only done if one of the specified strings matches the left-hand part of
|
|
# the path. The tag can be used to show relative paths in the file list.
|
|
# If left blank the directory from which doxygen is run is used as the
|
|
# path to strip.
|
|
|
|
STRIP_FROM_PATH = @PROJECT_SOURCE_DIR@
|
|
|
|
# The EXAMPLE_PATH tag can be used to specify one or more files or
|
|
# directories that contain example code fragments that are included (see
|
|
# the \include command).
|
|
|
|
EXAMPLE_PATH = @PROJECT_SOURCE_DIR@/tutorials/
|
|
|
|
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
|
|
# base path where the generated documentation will be put.
|
|
# If a relative path is entered, it will be relative to the location
|
|
# where doxygen was started. If left blank the current directory will be used.
|
|
|
|
OUTPUT_DIRECTORY = @PROJECT_BINARY_DIR@/Documentation
|
|
|
|
# The IMAGE_PATH tag can be used to specify one or more files or
|
|
# directories that contain image that are included in the documentation (see
|
|
# the \image command).
|
|
|
|
IMAGE_PATH = @PROJECT_SOURCE_DIR@/Documentation/Figure
|
|
|
|
# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
|
|
# by doxygen. The layout file controls the global structure of the generated
|
|
# output files in an output format independent way. The create the layout file
|
|
# that represents doxygen's defaults, run doxygen with the -l option.
|
|
# You can optionally specify a file name after the option, if omitted
|
|
# DoxygenLayout.xml will be used as the name of the layout file.
|
|
|
|
LAYOUT_FILE = @PROJECT_SOURCE_DIR@/Documentation/DoxygenLayout.xml
|
|
|
|
# The HTML_STYLESHEET tag can be used to specify a user-defined cascading
|
|
# style sheet that is used by each HTML page. It can be used to
|
|
# fine-tune the look of the HTML output. If the tag is left blank doxygen
|
|
# will generate a default style sheet. Note that doxygen will try to copy
|
|
# the style sheet file to the HTML output directory, so don't put your own
|
|
# stylesheet in the HTML output directory as well, or it will be erased!
|
|
|
|
HTML_STYLESHEET = style.css
|