summaryrefslogtreecommitdiffstats
path: root/doc/c/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-12-21 18:14:10 +0100
committerDavid Robillard <d@drobilla.net>2020-12-21 18:14:10 +0100
commitd361ce65d3841c9f97d27ac477c2e55c3802b381 (patch)
treec710d7deab629c6179ccf663f0421750b801a667 /doc/c/wscript
parentb3067e5a5dd1d92551d166a5095821e9033c0b7c (diff)
downloadsratom-d361ce65d3841c9f97d27ac477c2e55c3802b381.tar.gz
sratom-d361ce65d3841c9f97d27ac477c2e55c3802b381.tar.bz2
sratom-d361ce65d3841c9f97d27ac477c2e55c3802b381.zip
Generate documentation with Sphinx
Diffstat (limited to 'doc/c/wscript')
-rw-r--r--doc/c/wscript41
1 files changed, 41 insertions, 0 deletions
diff --git a/doc/c/wscript b/doc/c/wscript
new file mode 100644
index 0000000..d88ee38
--- /dev/null
+++ b/doc/c/wscript
@@ -0,0 +1,41 @@
+#!/usr/bin/env python
+
+def build(bld):
+ dox_to_sphinx = bld.path.find_node("../../scripts/dox_to_sphinx.py")
+ index_xml = bld.path.get_bld().make_node("xml/index.xml")
+
+ files = [
+ ("../_static/custom.css", "sphinx/_static/custom.css"),
+ ("../_templates/about.html", "sphinx/_templates/about.html"),
+ ("../sratom.rst", "sphinx/sratom.rst"),
+ ("index.rst", "sphinx/index.rst"),
+ ("overview.rst", "sphinx/overview.rst"),
+ ("reference.rst", "sphinx/reference.rst"),
+ ]
+
+ # Run Doxygen to generate XML documentation
+ bld(features="doxygen", doxyfile="Doxyfile")
+
+ # Substitute variables to make Sphinx configuration file
+ bld(features="subst",
+ source="../conf.py.in",
+ target="sphinx/conf.py",
+ SERD_VERSION=bld.env.SERD_VERSION)
+
+ # Copy static documentation files to Sphinx build directory
+ for f in files:
+ bld(features="subst", is_copy=True, source=f[0], target=f[1])
+
+ # Generate Sphinx markup from Doxygen XML
+ bld.add_group()
+ bld(rule="${PYTHON} " + dox_to_sphinx.abspath() + " -f ${SRC} ${TGT}",
+ source=index_xml,
+ target="sphinx/api/")
+
+ # Run Sphinx to generate HTML documentation
+ doc_dir = bld.env.DOCDIR + "/sratom-%s/" % bld.env.SRATOM_MAJOR_VERSION
+ bld(features="sphinx",
+ sphinx_source=bld.path.get_bld().make_node("sphinx"),
+ sphinx_output_format="singlehtml",
+ sphinx_options=["-E", "-q"],
+ install_path=doc_dir + "c/singlehtml/")