-
Notifications
You must be signed in to change notification settings - Fork 12
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 #110 from zmoon/doxy
Doxysphinx
- Loading branch information
Showing
13 changed files
with
137 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# https://www.doxygen.nl/manual/config.html | ||
PROJECT_NAME = CATChem | ||
PROJECT_BRIEF = | ||
|
||
OPTIMIZE_FOR_FORTRAN = YES | ||
|
||
INPUT = doxygen/index.md \ | ||
../src/core \ | ||
../src/process/drydep \ | ||
../src/process/dust \ | ||
../src/process/plumerise \ | ||
../src/process/seasalt \ | ||
../src/api | ||
USE_MDFILE_AS_MAINPAGE = index.md | ||
FILE_PATTERNS = *.F90 | ||
RECURSIVE = YES | ||
|
||
# Doxygen Awesome | ||
HTML_EXTRA_STYLESHEET = ../docs2/static/doxygen-awesome.css \ | ||
../docs2/static/doxygen-awesome-sidebar-only.css \ | ||
tweaks.css | ||
HTML_COLORSTYLE = LIGHT | ||
|
||
# Doxysphinx required | ||
GENERATE_TREEVIEW = NO | ||
DISABLE_INDEX = NO | ||
GENERATE_HTML = YES | ||
CREATE_SUBDIRS = NO | ||
OUTPUT_DIRECTORY = ./doxygen/ | ||
GENERATE_LATEX = NO | ||
|
||
# Doxysphinx recommended | ||
SEARCHENGINE = NO | ||
GENERATE_TAGFILE = ./doxygen/html/tagfile.xml | ||
DOT_IMAGE_FORMAT = svg | ||
DOT_TRANSPARENT = YES | ||
INTERACTIVE_SVG = YES | ||
ALIASES = "rst=\verbatim embed:rst:leading-asterisk" \ | ||
endrst=\endverbatim | ||
|
||
# GraphViz Configuration | ||
INCLUDE_GRAPH = NO | ||
INCLUDED_BY_GRAPH = NO | ||
CALL_GRAPH = YES |
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,24 @@ | ||
Building the docs locally: | ||
|
||
(From this directory.) | ||
|
||
1. Run Doxygen | ||
``` | ||
doxygen | ||
``` | ||
|
||
2. Run Doxysphinx | ||
``` | ||
doxysphinx -v INFO build . ./_build Doxyfile | ||
``` | ||
|
||
3. Run Sphinx | ||
``` | ||
sphinx-build -b html . ./_build | ||
``` | ||
|
||
Or, in one line: | ||
|
||
```bash | ||
doxygen && doxysphinx -v INFO build . ./_build Doxyfile && sphinx-build -b html . ./_build | ||
``` |
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
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,3 @@ | ||
* | ||
!.gitignore | ||
!index.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
CATChem API documentation generated by [Doxygen](https://www.doxygen.nl/) from source code comments, | ||
embedded in Sphinx with the help of [Doxysphinx](https://boschglobal.github.io/doxysphinx/). | ||
Use the sidebar and page links to navigate. |
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 @@ | ||
#projectname {display:none} |
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