File tree 3 files changed +43
-7
lines changed
3 files changed +43
-7
lines changed Original file line number Diff line number Diff line change @@ -10,18 +10,19 @@ this distribution.
10
10
11
11
This repository contains a set of C header (include) files
12
12
extracted from the development branch of EPICS Base, along
13
- with enough of the EPICS Build system to be able to run
14
- doxygen against those header files.
13
+ with a configuration file for Doxygen to tell it how to
14
+ process those header files.
15
15
16
16
Every GitHub pull-request (and subsequent commit to that
17
17
branch) made against this repository will be processed by
18
- Jenkins and the results made available on a website where
18
+ Doxygen and the results made available on a website where
19
19
they can be checked - a link to the results from your pull
20
20
request will be sent to you by email when the processing
21
21
is finished. If the output wasn't quite what you wanted it
22
- to look like, fix your Doxygen annotations, commit them
23
- and commit and push to the same branch. Jenkins will redo
24
- the processing and send you another email when it's ready.
22
+ to look like, fix your Doxygen annotations and commit and
23
+ push them to your branch (or just commit them if you're
24
+ working directly on Github). Doxygen will redo the
25
+ processing and you'll get another email when it's ready.
25
26
26
27
...
27
28
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ # Doxyfile 1.8.7
2
+
3
+ # This template is used to generate the doxygen config file for EPICS Base
4
+
5
+ # Project details
6
+ PROJECT_NAME = "EPICS Base"
7
+ PROJECT_NUMBER = 7.0.1.2
8
+
9
+ # Input paths
10
+ INPUT = ../include
11
+ RECURSIVE = YES
12
+ STRIP_FROM_PATH = ../include
13
+ INCLUDE_PATH = ../include \
14
+ ../include/compiler/gcc ../include/os/Linux
15
+
16
+ # Output paths
17
+ HTML_OUTPUT = ../html/doxygen
18
+ LATEX_OUTPUT = O.latex
19
+
20
+ # Input configuration
21
+ TAB_SIZE = 8
22
+ CASE_SENSE_NAMES = YES
23
+ ENABLE_PREPROCESSING = YES
24
+ MACRO_EXPANSION = YES
25
+ EXPAND_ONLY_PREDEF = NO
26
+
27
+ # Output configuration
28
+ QUIET = YES
29
+ WARN_IF_UNDOCUMENTED = NO
30
+ PAPER_TYPE = letter
31
+ LATEX_BATCHMODE = YES
32
+ ALWAYS_DETAILED_SEC = NO
33
+ SORT_MEMBER_DOCS = NO
34
+ BRIEF_MEMBER_DESC = YES
35
+ REPEAT_BRIEF = NO
36
+ EXTRACT_ALL = NO
You can’t perform that action at this time.
0 commit comments