-
Notifications
You must be signed in to change notification settings - Fork 13
Introduce docs from CPP Driver and adjust #357
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 74 commits
e3fba03
c6839c5
944995d
280a427
cd6fd9e
0de457e
3084f52
f1c05c2
7a9370d
1d752f0
bd78961
079149f
ad31cc5
935e23e
51527b9
6660d53
a557f1b
11c9827
344e512
3480705
b2d509b
f4f85fd
0b25e72
91e8528
d7d52c1
58d05fa
3e0e2a4
e763be7
a0e68c2
4056c2b
2d8e826
e4fee9f
6f8fe5f
c5e18dc
4e06587
94da72a
01bd261
ba4b610
0b20294
36cc10d
6d141a2
7674c5a
435e905
0aaf654
ade3ad0
d2d8184
f3c7a92
7872ddb
e1db681
147de60
825fbda
a954892
751544a
51f918f
11b504d
1328b5b
5ac06ae
b85430b
d6f2e2c
780584a
7e8dbac
4c80957
ae06e33
69e661a
8e60341
dd4695f
a579cda
c13e482
3059a1b
7da985e
7ac356e
250e4f6
1c5f18c
7b77e66
5aeb383
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ SPHINXOPTS = -j auto | |
SPHINXBUILD = $(POETRY) run sphinx-build | ||
PAPER = | ||
BUILDDIR = _build | ||
SOURCEDIR = source | ||
SOURCEDIR = _source | ||
|
||
# Internal variables | ||
PAPEROPT_a4 = -D latex_paper_size=a4 | ||
|
@@ -20,10 +20,16 @@ all: dirhtml | |
.PHONY: setupenv | ||
setupenv: | ||
pip install -q poetry | ||
sudo apt-get install doxygen | ||
|
||
.PHONY: setup | ||
setup: | ||
$(POETRY) install | ||
$(POETRY) update | ||
cd .. && doxygen Doxyfile.in | ||
@if [ ! -d "$(SOURCEDIR)" ]; then mkdir -p "$(SOURCEDIR)"; fi | ||
cp -RL source/* $(SOURCEDIR) | ||
# cd $(SOURCEDIR) && find . -name README.md -execdir mv '{}' index.md ';' | ||
Comment on lines
+30
to
+32
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Lines 28 and 29 look ok. We can remove lines 30–32 and set In this project, it does not appear necessary to copy the documentation to a separate |
||
|
||
.PHONY: update | ||
update: | ||
|
Uh oh!
There was an error while loading. Please reload this page.