diff options
author | David Robillard <d@drobilla.net> | 2021-01-06 23:53:32 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-01-06 23:53:32 +0100 |
commit | 94e30b9c3c188dfdf4765f026872f95ea3cfdda2 (patch) | |
tree | 2a74ee400a172703137e5273df2ac93d588523cc /doc/cpp/wscript | |
parent | d2a6fd3f725f7f174535c49d78d07567e12c84d8 (diff) | |
download | pugl-94e30b9c3c188dfdf4765f026872f95ea3cfdda2.tar.gz pugl-94e30b9c3c188dfdf4765f026872f95ea3cfdda2.tar.bz2 pugl-94e30b9c3c188dfdf4765f026872f95ea3cfdda2.zip |
Simplify documentation structure and use LV2 theme
Diffstat (limited to 'doc/cpp/wscript')
-rw-r--r-- | doc/cpp/wscript | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/doc/cpp/wscript b/doc/cpp/wscript index 3ccb8c7..4bef6c2 100644 --- a/doc/cpp/wscript +++ b/doc/cpp/wscript @@ -6,12 +6,8 @@ def build(bld): files = [ ("../../resources/pugl.svg", "sphinx/_static/pugl.svg"), - ("../_static/custom.css", "sphinx/_static/custom.css"), - ("../_templates/about.html", "sphinx/_templates/about.html"), ("../deployment.rst", "sphinx/deployment.rst"), - ("../pugl.rst", "sphinx/pugl.rst"), - ("c-reference.rst", "sphinx/c-reference.rst"), - ("cpp-reference.rst", "sphinx/cpp-reference.rst"), + ("../summary.rst", "sphinx/summary.rst"), ("event-loop.rst", "sphinx/event-loop.rst"), ("events.rst", "sphinx/events.rst"), ("index.rst", "sphinx/index.rst"), @@ -44,5 +40,5 @@ def build(bld): bld(features="sphinx", sphinx_source=bld.path.get_bld().make_node("sphinx"), sphinx_output_format="singlehtml", - sphinx_options=["-E", "-q"], + sphinx_options=["-E", "-q", "-t", "singlehtml"], install_path=doc_dir + "cpp/singlehtml/") |