source: Doxyfile-offline @ e908bac

Revision e908bac, 1.4 KB checked in by lottaviano <lottaviano@38d2e660-2303-0410-9eaa-f027e97ec537>, 3 years ago (diff)

doc: Various fixes to documentation infrastructure

  • Move all doc related files to doc/
  • Use INPUT directive to correctly generate docs
  • Move FILE_PATTERNS to common Doxyfile

git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2992 38d2e660-2303-0410-9eaa-f027e97ec537

  • Property mode set to 100644
Line 
1# Doxyfile 1.5.9
2
3@INCLUDE = Doxyfile-common
4
5
6# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
7# base path where the generated documentation will be put.
8# If a relative path is entered, it will be relative to the location
9# where doxygen was started. If left blank the current directory will be used.
10
11OUTPUT_DIRECTORY       = doc/offline-reference
12
13# The INPUT tag can be used to specify the files and/or directories that contain
14# documented source files. You may enter file names like "myfile.cpp" or
15# directories like "/usr/src/myproject". Separate the files or directories
16# with spaces.
17
18INPUT                  += doc/README.bertos \
19                          doc/STATUS
20
21# The HTML_HEADER tag can be used to specify a personal HTML header for
22# each generated HTML page. If it is left blank doxygen will generate a
23# standard header.
24
25HTML_HEADER            =
26
27# If the GENERATE_HTMLHELP tag is set to YES, additional index files
28# will be generated that can be used as input for tools like the
29# Microsoft HTML help workshop to generate a compiled HTML help file (.chm)
30# of the generated HTML documentation.
31
32GENERATE_HTMLHELP      = YES
33
34# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
35# be used to specify the file name of the resulting .chm file. You
36# can add a path in front of the file if the result should not be
37# written to the html output directory.
38
39CHM_FILE               = bertos-doc.chm
40
Note: See TracBrowser for help on using the repository browser.