-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix nasa#2055, Refactor doxygen mainpage into frontpage
- Loading branch information
Showing
6 changed files
with
98 additions
and
162 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 |
---|---|---|
@@ -1,19 +1,37 @@ | ||
#--------------------------------------------------------------------------- | ||
# Doxygen options to generate the complete mission documentation | ||
# Sample doxygen setup for generating mission documentation | ||
#--------------------------------------------------------------------------- | ||
|
||
# Start with the common definitions, some of which are extended or overridden here. | ||
# Mission, build, static search for @INCLUDE to allow overrides | ||
@INCLUDE_PATH = @MISSION_SOURCE_DIR@ | ||
@INCLUDE_PATH += @MISSION_BINARY_DIR@/docs | ||
@INCLUDE_PATH += @MISSION_SOURCE_DIR@/cfe/docs/src | ||
@INCLUDE_PATH += @MISSION_SOURCE_DIR@/cfe/docs/src/mnem_maps | ||
|
||
# Common configuration and default settings can be overridden | ||
SEARCH_INCLUDES = YES | ||
@INCLUDE = @MISSION_BINARY_DIR@/docs/cfe-common.doxyfile | ||
@INCLUDE = default-settings.doxyfile | ||
|
||
# Example detailed design setup | ||
PROJECT_NAME = "@MISSION_NAME@" | ||
PROJECT_BRIEF = "Core Flight System project built using \"@MISSIONCONFIG@\" configuration" | ||
OUTPUT_DIRECTORY = @CMAKE_BINARY_DIR@/docs/detaildesign | ||
WARN_LOGFILE = @CMAKE_BINARY_DIR@/docs/detaildesign-warnings.log | ||
|
||
# Include mission defs directory | ||
INPUT += @MISSION_DEFS@ | ||
STRIP_FROM_PATH += @MISSION_DEFS@ | ||
|
||
#--------------------------------------------------------------------------- | ||
# The user content doxyfile contains paths to the mission-specific applications | ||
#--------------------------------------------------------------------------- | ||
@DETAILDESIGN_DOXYFILE_USER_CONTENT@ | ||
@TGTSYSTEM_DOXYFILE_USER_CONTENT@ | ||
|
||
# Exclude coverage tests, stubs and associated framework from the documentation | ||
EXCLUDE_PATTERNS += "*/ut-stubs/*" | ||
EXCLUDE_PATTERNS += "*/ut-coverage/*" | ||
EXCLUDE_PATTERNS += "*/unit-test*/*" | ||
|
||
# Exclude contributing guides and readme's since they stand alone as repo documentation | ||
EXCLUDE_PATTERNS += "*/CONTRIBUTING.md" | ||
EXCLUDE_PATTERNS += "*/README.md" |
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 was deleted.
Oops, something went wrong.
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,48 @@ | ||
#--------------------------------------------------------------------------- | ||
# Default Doxygen settings, can be included or replaced at mission level | ||
#--------------------------------------------------------------------------- | ||
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 |