Skip to content

Commit 25d3d78

Browse files
Andreas LauserAndreas Lauser
authored andcommitted
add Doxylocal file
this is supposed to fix 'make doc'
1 parent 5e8232d commit 25d3d78

File tree

2 files changed

+70
-0
lines changed

2 files changed

+70
-0
lines changed

doc/doxygen/Doxylocal

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# The INPUT tag can be used to specify the files and/or directories that contain
2+
# documented source files. You may enter file names like "myfile.cpp" or
3+
# directories like "/usr/src/myproject". Separate the files or directories
4+
# with spaces.
5+
6+
INPUT = @PROJECT_SOURCE_DIR@/@src_DIR@/
7+
8+
# The EXCLUDE tag can be used to specify files and/or directories that should
9+
# excluded from the INPUT source files. This way you can easily exclude a
10+
# subdirectory from a directory tree whose root is specified with the INPUT tag.
11+
12+
EXCLUDE =
13+
14+
# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
15+
# can be used to strip a user-defined part of the path. Stripping is
16+
# only done if one of the specified strings matches the left-hand part of
17+
# the path. The tag can be used to show relative paths in the file list.
18+
# If left blank the directory from which doxygen is run is used as the
19+
# path to strip.
20+
21+
STRIP_FROM_PATH = @PROJECT_SOURCE_DIR@
22+
23+
# The EXAMPLE_PATH tag can be used to specify one or more files or
24+
# directories that contain example code fragments that are included (see
25+
# the \include command).
26+
27+
EXAMPLE_PATH =
28+
29+
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
30+
# base path where the generated documentation will be put.
31+
# If a relative path is entered, it will be relative to the location
32+
# where doxygen was started. If left blank the current directory will be used.
33+
34+
OUTPUT_DIRECTORY = @PROJECT_BINARY_DIR@/@doxy_dir@
35+
36+
# The IMAGE_PATH tag can be used to specify one or more files or
37+
# directories that contain image that are included in the documentation (see
38+
# the \image command).
39+
40+
IMAGE_PATH = @PROJECT_SOURCE_DIR@/@doxy_dir@/Figure
41+
42+
# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
43+
# by doxygen. The layout file controls the global structure of the generated
44+
# output files in an output format independent way. The create the layout file
45+
# that represents doxygen's defaults, run doxygen with the -l option.
46+
# You can optionally specify a file name after the option, if omitted
47+
# DoxygenLayout.xml will be used as the name of the layout file.
48+
49+
LAYOUT_FILE = @PROJECT_SOURCE_DIR@/@doxy_dir@/DoxygenLayout.xml
50+
51+
# The HTML_EXTRA_STYLESHEET tag can be used to specify an additional
52+
# user-defined cascading style sheet that is included after the standard
53+
# style sheets created by doxygen. Using this option one can overrule
54+
# certain style aspects. This is preferred over using HTML_STYLESHEET
55+
# since it does not replace the standard style sheet and is therefor more
56+
# robust against future updates. Doxygen will copy the style sheet file to
57+
# the output directory.
58+
59+
HTML_EXTRA_STYLESHEET = style.css

doc/doxygen/style.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/* Userspesific CSS for doxygen */
2+
body, table, div, p, dl {
3+
font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif;
4+
font-size: 16px;
5+
}
6+
h1 {
7+
font-size: 120%;
8+
}
9+
10+
11+

0 commit comments

Comments
 (0)