File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -22,30 +22,35 @@ pip install -r requirements.txt
22
22
cmake -S . -B build -DUSE_DOCS=ON
23
23
```
24
24
25
- 5 . Build the documentation:
25
+ 5 . Generate API documentation with Doxygen:
26
+ ``` bash
27
+ doxygen Doxyfile
28
+ ```
29
+
30
+ 6 . Build the documentation:
26
31
``` bash
27
32
cmake --build build -t docs_html
28
33
```
29
34
30
- 6 . Update the documentation:
35
+ 7 . Update the documentation:
31
36
``` bash
32
37
cmake --build build -t docs_gettext
33
38
# update documentation
34
39
cmake --build build -t docs_update
35
40
```
36
41
37
- 7 . Re-build the documentation:
42
+ 8 . Re-build the documentation:
38
43
``` bash
39
44
cmake --build build -t docs_html
40
45
```
41
46
42
- 8 . Make local deployment of the changes:
47
+ 9 . Make local deployment of the changes:
43
48
``` bash
44
49
cd _build/html
45
50
python3 -m http.server 8080
46
51
```
47
52
48
- 9 . Open the documentation in your browser:
53
+ 10 . Open the documentation in your browser:
49
54
``` bash
50
55
open http://localhost:8080/en
51
56
open http://localhost:8080/ru
You can’t perform that action at this time.
0 commit comments