-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1228 from skliper/fix1227-doxygen_mainpage
Fix #1227, Refactor doxygen and remove mainpage
- Loading branch information
Showing
6 changed files
with
78 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
#--------------------------------------------------------------------------- | ||
# Default Doxygen settings | ||
#--------------------------------------------------------------------------- | ||
|
||
# Common aliases | ||
ALIASES += nonnull="(must not be null)" | ||
ALIASES += nonzero="(must not be zero)" | ||
ALIASES += covtest="(return value only verified in coverage test)" | ||
|
||
# Source options | ||
OPTIMIZE_OUTPUT_FOR_C = YES | ||
|
||
# Build related | ||
EXTRACT_ALL = YES | ||
EXTRACT_PRIVATE = YES | ||
EXTRACT_STATIC = YES | ||
CASE_SENSE_NAMES = NO | ||
GENERATE_TODOLIST = NO | ||
GENERATE_BUGLIST = YES | ||
GENERATE_DEPRECATEDLIST= YES | ||
|
||
# Warnings | ||
WARN_NO_PARAMDOC = YES | ||
|
||
# Matching | ||
FILE_PATTERNS = *.c *.cpp *.cc *.C *.h *.hh *.hpp *.H *.dox *.md | ||
RECURSIVE = YES | ||
|
||
# Source browsing | ||
SOURCE_BROWSER = YES | ||
REFERENCED_BY_RELATION = YES | ||
REFERENCES_RELATION = YES | ||
|
||
# LaTeX output | ||
GENERATE_LATEX = YES | ||
LATEX_CMD_NAME = latex | ||
COMPACT_LATEX = YES | ||
PAPER_TYPE = letter | ||
|
||
# RTF output | ||
COMPACT_RTF = YES | ||
|
||
# Dot tool | ||
CLASS_DIAGRAMS = NO | ||
HAVE_DOT = YES | ||
CLASS_GRAPH = NO | ||
COLLABORATION_GRAPH = NO | ||
INCLUDE_GRAPH = NO | ||
INCLUDED_BY_GRAPH = NO | ||
CALL_GRAPH = YES | ||
GRAPHICAL_HIERARCHY = NO | ||
MAX_DOT_GRAPH_DEPTH = 1000 | ||
|
||
# Search engine | ||
SEARCHENGINE = NO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,15 @@ | ||
#--------------------------------------------------------------------------- | ||
# Project related configuration options, shared for all cFE doxygen outputs | ||
# OSAL common setup for including in stand alone or mission documentation | ||
#--------------------------------------------------------------------------- | ||
@INCLUDE_PATH = @OSAL_NATIVE_INCLUDE_DIRS@ | ||
OUTPUT_DIRECTORY = . | ||
ABBREVIATE_BRIEF = "The $name class " \ | ||
"The $name widget " \ | ||
"The $name file " \ | ||
is \ | ||
provides \ | ||
specifies \ | ||
contains \ | ||
represents \ | ||
a \ | ||
an \ | ||
the | ||
TAB_SIZE = 4 | ||
OPTIMIZE_OUTPUT_FOR_C = YES | ||
ALIASES += nonnull="(must not be null)" | ||
ALIASES += nonzero="(must not be zero)" | ||
ALIASES += covtest="(return value only verified in coverage test)" | ||
|
||
# Allow overrides | ||
@INCLUDE_PATH = @MISSION_SOURCE_DIR@ | ||
|
||
# Default settings from cFE | ||
@INCLUDE = @OSAL_NATIVE_DEFAULT_SETTINGS@ | ||
|
||
# Include any passed in predefines | ||
PREDEFINED += @OSALDOC_PREDEFINED@ | ||
|
||
#--------------------------------------------------------------------------- | ||
# Build related configuration options | ||
#--------------------------------------------------------------------------- | ||
EXTRACT_ALL = YES | ||
EXTRACT_PRIVATE = YES | ||
EXTRACT_STATIC = YES | ||
CASE_SENSE_NAMES = NO | ||
GENERATE_TODOLIST = NO | ||
#--------------------------------------------------------------------------- | ||
# configuration options related to warning and progress messages | ||
#--------------------------------------------------------------------------- | ||
WARN_NO_PARAMDOC = YES | ||
#--------------------------------------------------------------------------- | ||
# configuration options related to the input files | ||
#--------------------------------------------------------------------------- | ||
STRIP_FROM_PATH = @OSAL_SOURCE_NATIVE_DIR@ | ||
FILE_PATTERNS = *.c *.cpp *.cc *.C *.h *.hh *.hpp *.H *.dox *.md | ||
RECURSIVE = YES | ||
EXAMPLE_PATTERNS = * | ||
#--------------------------------------------------------------------------- | ||
# configuration options related to source browsing | ||
#--------------------------------------------------------------------------- | ||
SOURCE_BROWSER = YES | ||
REFERENCED_BY_RELATION = YES | ||
REFERENCES_RELATION = YES | ||
#--------------------------------------------------------------------------- | ||
# configuration options related to the LaTeX output | ||
#--------------------------------------------------------------------------- | ||
GENERATE_LATEX = NO | ||
LATEX_CMD_NAME = latex | ||
COMPACT_LATEX = YES | ||
PAPER_TYPE = letter | ||
#--------------------------------------------------------------------------- | ||
# configuration options related to the RTF output | ||
#--------------------------------------------------------------------------- | ||
COMPACT_RTF = YES | ||
#--------------------------------------------------------------------------- | ||
# Configuration options related to the dot tool | ||
#--------------------------------------------------------------------------- | ||
CLASS_DIAGRAMS = NO | ||
HAVE_DOT = YES | ||
CLASS_GRAPH = NO | ||
COLLABORATION_GRAPH = NO | ||
INCLUDE_GRAPH = NO | ||
INCLUDED_BY_GRAPH = NO | ||
CALL_GRAPH = YES | ||
GRAPHICAL_HIERARCHY = NO | ||
MAX_DOT_GRAPH_DEPTH = 1000 | ||
#--------------------------------------------------------------------------- | ||
# Configuration::additions related to the search engine | ||
#--------------------------------------------------------------------------- | ||
SEARCHENGINE = NO | ||
# Minimum set of source files (includes *.dox, followed by public headers) | ||
INPUT += @OSAL_NATIVE_APIGUIDE_SOURCEFILES@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters