Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 749 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 749 Bytes

Documentation

On every change of the main branch, we automatically build a new version of our general documentation and the Doxygen documentation. Sometimes, it is necessary to build the documentation locally. Here, we give instructions on how to do it.

Build the documentation

To build the documentation, you need the required dependencies (see the README) and a CMakeUserPresets.json with the configured paths. For simplicity, the docker preset is used here.

Doxygen

cd <build-dir>
cmake <source-dir> --fresh --preset=docker -DFOUR_C_BUILD_DOXYGEN="ON"
cmake --build . --target doxygen

Readthedocs

cd <build-dir>
cmake <source-dir> --fresh --preset=docker
cmake --build . --target readthedocs