https://github.com/TartanLlama/cpp-documentation-example
An example of setting up Sphinx for C++ and building with CMake and Read the Docs
See the documentation here
Use python3 by default
sudo ln -sf /usr/bin/python3 /usr/bin/pythonconda env create --file environment.yml
conda env create --file environment.yml --force # if env already exists
conda activate docu-eval
conda deactivate
conda env remove -n docu-evalconda install -c conda-forge doxygenmkdir build && cd build
cmake ../src
cmake --build .cd docs/
doxygen