977ed18d
Hu Chunming
提交三方库
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Boost.GIL Documentation
A simple guide about writing and building documentation for Boost.GIL.
## Prerequisites
- Python 3
- Install [Sphinx](https://www.sphinx-doc.org/en/master/index.html) (see `requirements.txt`)
- Install [Doxygen](http://www.doxygen.org)
## Installation
Create Python virtual environment:
```console
$ python3 -m venv .venv
$ source ~/.venv/bin/activate
```
Install Sphinx and Sphinx extensions:
```console
(.venv)$ cd boost-root
(.venv)$ pip install -r libs/gil/doc/requirements.txt
```
## Build
```console
$ echo "using doxygen ;" > ~/user-config.jam
$ cd boost-root
$ b2 libs/gil/doc
```
|