• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

_build/doctrees/H10-Dec-2019-

_static/H03-May-2022-768644

_templates/H03-May-2022-

design/H10-Dec-2019-3,1902,439

html/H03-May-2022-4,3343,336

image_processing/H03-May-2022-196130

images/H03-May-2022-

tutorial/H10-Dec-2019-1,098889

JamfileH A D10-Dec-20191.4 KiB6758

MakefileH A D10-Dec-20194.5 KiB134107

README.mdH A D10-Dec-2019594 3523

conf.pyH A D10-Dec-20197.2 KiB22630

doxyfileH A D10-Dec-20198.8 KiB233231

doxygen-boost.cssH A D10-Dec-201977 42

index.rstH A D10-Dec-20191.9 KiB6653

installation.rstH A D10-Dec-2019615 1812

io.rstH A D10-Dec-201923.9 KiB659490

naming.rstH A D10-Dec-20191.6 KiB4932

numeric.rstH A D10-Dec-201963 85

reference.doxH A D10-Dec-201910.5 KiB282221

toolbox.rstH A D10-Dec-20191.1 KiB6039

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