Name Date Size #Lines LOC

..12-Feb-2024-

GSG/H12-Feb-2024-344221

_static/H12-Feb-2024-5148

index/H12-Feb-2024-5134

main/H12-Feb-2024-12,1078,073

Doxyfile.inH A D12-Feb-2024106.2 KiB2,4961,941

DoxygenLayout.xmlH A D12-Feb-20246 KiB196183

MakefileH A D12-Feb-20241.4 KiB379

README.mdH A D12-Feb-2024644 3521

conf.pyH A D12-Feb-202410.5 KiB313102

index.rstH A D12-Feb-2024509 169

make.batH A D12-Feb-20241.6 KiB5442

test_classification.doxH A D12-Feb-20241.4 KiB3635

README.md

1# How to build oneTBB documentation
2
3Our documentation is written in restructured text markup (.rst) and built using [Sphinx](http://www.sphinx-doc.org/en/master/).
4
5This document explains how to build oneTBB documentation locally.
6
7## Prerequisites
8- Python 3.7.0 or higher
9- Sphinx
10
11## Build documentation
12
13Do the following to generate HTML output of the documentation:
14
151. Clone oneTBB repository:
16
17```
18git clone https://github.com/oneapi-src/oneTBB.git
19```
20
212. Go to the `doc` folder:
22
23```
24cd oneTBB/doc
25```
26
273. Run in the command line:
28
29```
30make html
31```
32
33
34That's it! Your built documentation is located in the ``build/html`` folder.
35