• Home
Name Date Size #Lines LOC

..--

_build/doctrees/12-May-2024-

_static/12-May-2024-1,1451,021

_templates/12-May-2024-138133

design/12-May-2024-3,1302,394

html/12-May-2024-30,83323,498

image_processing/12-May-2024-196130

images/12-May-2024-

tutorial/12-May-2024-1,098889

JamfileD12-May-20241.4 KiB6758

MakefileD12-May-20244.5 KiB134107

README.mdD12-May-2024594 3523

conf.pyD12-May-20247.2 KiB22630

doxyfileD12-May-20248.8 KiB233231

doxygen-boost.cssD12-May-202477 42

footer.htmlD12-May-2024713 2316

header.htmlD12-May-20241.5 KiB3532

index.htmlD12-May-2024216 109

index.rstD12-May-20241.9 KiB6653

installation.rstD12-May-2024615 1812

io.rstD12-May-202423.7 KiB657488

naming.rstD12-May-20241.6 KiB4932

numeric.rstD12-May-202463 85

reference.doxD12-May-202410.5 KiB282221

requirements.txtD12-May-202412 21

toolbox.rstD12-May-20241.1 KiB6039

warnings.txtD12-May-20245 KiB2423

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