-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
718c61d
commit 78d2798
Showing
4 changed files
with
39 additions
and
9 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
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,8 +1,24 @@ | ||
To generate HTML documentation run the `generate_docs.py` script from the `build` dir. | ||
It will create extra `./docs_build` directory, where the intermediate and final files | ||
# Documentation | ||
|
||
To generate HTML documentation run the `generate_docs.py` script from any sub-dir of the | ||
repository (most likely `build`) or enable and use build target 'docs' (see details below). | ||
|
||
This script will create `./docs_build` sub-directory, where the intermediate and final files | ||
will be created. HTML docs will be in the `./docs_build/generated/html` directory. | ||
|
||
The script requires: | ||
## make docs | ||
|
||
To run documentation generation via build target use CMake commands below. | ||
To enable this target, python executable (in required version) has to be found in the system. | ||
|
||
```bash | ||
$ cmake -B build | ||
$ cmake --build build --target docs | ||
``` | ||
|
||
## Requirements | ||
|
||
Script to generate HTML docs requires: | ||
* [Doxygen](http://www.doxygen.nl/) at least v1.9.1 | ||
* [Python](https://www.python.org/downloads/) at least v3.8 | ||
* and python pip requirements, as defined in `third_party/requirements.txt` |