Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
_build/doctrees/ | 12-May-2024 | - | ||||
_static/ | 12-May-2024 | - | 1,145 | 1,021 | ||
_templates/ | 12-May-2024 | - | 138 | 133 | ||
design/ | 12-May-2024 | - | 3,130 | 2,394 | ||
html/ | 12-May-2024 | - | 30,833 | 23,498 | ||
image_processing/ | 12-May-2024 | - | 196 | 130 | ||
images/ | 12-May-2024 | - | ||||
tutorial/ | 12-May-2024 | - | 1,098 | 889 | ||
Jamfile | D | 12-May-2024 | 1.4 KiB | 67 | 58 | |
Makefile | D | 12-May-2024 | 4.5 KiB | 134 | 107 | |
README.md | D | 12-May-2024 | 594 | 35 | 23 | |
conf.py | D | 12-May-2024 | 7.2 KiB | 226 | 30 | |
doxyfile | D | 12-May-2024 | 8.8 KiB | 233 | 231 | |
doxygen-boost.css | D | 12-May-2024 | 77 | 4 | 2 | |
footer.html | D | 12-May-2024 | 713 | 23 | 16 | |
header.html | D | 12-May-2024 | 1.5 KiB | 35 | 32 | |
index.html | D | 12-May-2024 | 216 | 10 | 9 | |
index.rst | D | 12-May-2024 | 1.9 KiB | 66 | 53 | |
installation.rst | D | 12-May-2024 | 615 | 18 | 12 | |
io.rst | D | 12-May-2024 | 23.7 KiB | 657 | 488 | |
naming.rst | D | 12-May-2024 | 1.6 KiB | 49 | 32 | |
numeric.rst | D | 12-May-2024 | 63 | 8 | 5 | |
reference.dox | D | 12-May-2024 | 10.5 KiB | 282 | 221 | |
requirements.txt | D | 12-May-2024 | 12 | 2 | 1 | |
toolbox.rst | D | 12-May-2024 | 1.1 KiB | 60 | 39 | |
warnings.txt | D | 12-May-2024 | 5 KiB | 24 | 23 |
README.md
1# Boost.GIL Documentation 2 3A simple guide about writing and building documentation for Boost.GIL. 4 5## Prerequisites 6 7- Python 3 8- [Install Sphinx](#install-sphinx) (see `requirements.txt`) 9- Install [Doxygen](http://www.doxygen.org) 10 11 12## Installation 13 14Create Python virtual environment: 15 16```console 17$ python3 -m venv .venv 18$ source ~/.venv/bin/activate 19``` 20 21Install Sphinx and Sphinx extensions: 22 23```console 24(.venv)$ cd boost-root 25(.venv)$ pip install -r libs/gil/doc/requirements.txt 26``` 27 28## Build 29 30```console 31$ echo "using doxygen ;" > ~/user-config.jam 32$ cd boost-root 33$ b2 libs/gil/doc 34``` 35