You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To build the documentation, go to `doc/dev` and call:
18
23
```bash
19
24
make html
20
25
```
21
26
22
-
## Building documentation with [`Doxygen`](https://www.doxygen.nl/)
27
+
The entry point HTML page is found at `doc/dev/build/html/doc/dev/index.html`.
23
28
24
-
Using the settings file ``doc/api/Doxyfile``,
25
-
`Doxygen` will generate documentation
26
-
from formatted comments in C/C++ code in the subdirectories...
29
+
## Building API Documentation with [`Doxygen`](https://www.doxygen.nl/)
27
30
28
-
*``libs/bsp``
29
-
*``libs/bsw``
30
-
31
-
by running the following in the ``doc/api`` directory...
31
+
Using the settings file `doc/api/Doxyfile`, Doxygen generates the documentation from formatted
32
+
comments in the C/C++ code across all relevant subfolders; see
33
+
[Doxygen Main Page](DoxygenMainPage.md) for details.
32
34
35
+
To build the documentation, go to `doc/api` and call:
33
36
```bash
34
37
doxygen Doxyfile
35
38
```
36
39
37
-
The entry point html file is found at `doc/api/doxygenOut/html/index.html`
40
+
The entry point HTML page is found at `doc/api/doxygenOut/html/index.html`.
38
41
39
-
XML output is also generated in `doc/api/doxygenOut/xml/` from which coverage information can be extracted using [`coverxygen`](https://github.com/psycofdj/coverxygen). For example...
42
+
XML output is also generated in `doc/api/doxygenOut/xml/` from which coverage information can
43
+
be extracted using [`coverxygen`](https://github.com/psycofdj/coverxygen). For example:
0 commit comments