-
Notifications
You must be signed in to change notification settings - Fork 10
/
Doxyfile-prj.cfg
88 lines (76 loc) · 2.61 KB
/
Doxyfile-prj.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#-----------------------------------------------------------------------------------
# d-SEAMS - Deferred Structural Elucidation Analysis for Molecular Simulations
#
# Copyright (c) 2018--present d-SEAMS core team
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the MIT License as published by
# the Open Source Initiative.
#
# A copy of the MIT License is included in the LICENSE file of this repository.
# You should have received a copy of the MIT License along with this program.
# If not, see <https://opensource.org/licenses/MIT>.
#-----------------------------------------------------------------------------------
# Customized Options
# Make changes here to prevent things from being overwritten when the main file
# is updated
# Defaults
@INCLUDE = "./Doxyfile.cfg"
# XML
GENERATE_XML = NO
XML_PROGRAMLISTING = NO
# HTML
GENERATE_HTML = YES
USE_MATHJAX = YES
# LaTeX
GENERATE_LATEX = NO
# Project Settings
PROJECT_NAME = "d-SEAMS"
PROJECT_NUMBER = "v1.0.0"
PROJECT_BRIEF = "Deferred Structural Elucidation Analysis for Molecular Simulations"
PROJECT_LOGO = "images/dSeamsLogo.png"
IMAGE_PATH = "./images"
# Doxygen Settings
RECURSIVE = YES
EXTRACT_ALL = YES
INPUT = robots.txt README.md ./src/ ./markdown/
EXCLUDE = ./src/include/external
USE_MDFILE_AS_MAINPAGE = README.md
CITE_BIB_FILES = refs.bib
# Language additions
OPTIMIZE_OUTPUT_FOR_C = YES
BUILTIN_STL_SUPPORT = YES
# Style
JAVADOC_BANNER = YES
JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_SOURCES = YES
SOURCE_BROWSER = YES
DISABLE_INDEX = NO
GENERATE_TREEVIEW = NO
HAVE_DOT = YES
DOT_IMAGE_FORMAT = YES
HTML_DYNAMIC_SECTIONS = YES
INTERACTIVE_SVG = YES
# Theme
HTML_HEADER = "doxyYoda/html/header.html"
HTML_FOOTER = "doxyYoda/html/footer.html"
HTML_EXTRA_STYLESHEET = "doxyYoda/css/doxyYoda.min.css"
LAYOUT_FILE = "doxyYoda/xml/doxyYoda.xml"
# We link to standard definitions
TAGFILES += "./tags/cppreference-doxygen-web.tag.xml=http://en.cppreference.com/w/"
# Extract everything
# EXTRACT_ALL = NO
EXTRACT_PRIVATE = YES
EXTRACT_PRIV_VIRTUAL = YES
EXTRACT_PACKAGE = YES
EXTRACT_STATIC = YES
MACRO_EXPANSION = YES
ENABLE_PREPROCESSING = YES
# Lua Support
# EXTENSION_MAPPING =*.lua
# FILTER_PATTERNS=*.lua=lua2dox/lua2dox_filter
# FILE_PATTERNS = *.lua
# Local Variables:
# mode: conf
# End: