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

..03-May-2022-

_build/doctrees/H03-Dec-2020-

_static/H03-May-2022-768644

_templates/H03-May-2022-

design/H03-Dec-2020-3,1302,394

html/H03-May-2022-4,3333,335

image_processing/H03-May-2022-196130

images/H03-May-2022-

tutorial/H03-Dec-2020-1,098889

JamfileH A D03-Dec-20201.4 KiB6758

MakefileH A D03-Dec-20204.5 KiB134107

README.mdH A D03-Dec-2020594 3523

conf.pyH A D03-Dec-20207.2 KiB22630

doxyfileH A D03-Dec-20208.8 KiB233231

doxygen-boost.cssH A D03-Dec-202077 42

index.rstH A D03-Dec-20201.9 KiB6653

installation.rstH A D03-Dec-2020615 1812

io.rstH A D03-Dec-202023.7 KiB657488

naming.rstH A D03-Dec-20201.6 KiB4932

numeric.rstH A D03-Dec-202063 85

reference.doxH A D03-Dec-202010.5 KiB282221

toolbox.rstH A D03-Dec-20201.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