diff options
author | David Robillard <d@drobilla.net> | 2020-03-08 21:14:24 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-03-09 21:38:16 +0100 |
commit | 10191b2fe001553a7e832d3a6d1017f9ab039c40 (patch) | |
tree | 6793818972af1b08cb1d1c49c718799eb88e0a88 | |
parent | 39b00cff09db7d363072b058c1570ac6b2318f28 (diff) | |
download | pugl-10191b2fe001553a7e832d3a6d1017f9ab039c40.tar.gz pugl-10191b2fe001553a7e832d3a6d1017f9ab039c40.tar.bz2 pugl-10191b2fe001553a7e832d3a6d1017f9ab039c40.zip |
Use autowaf.build_dox to build documentation
-rw-r--r-- | wscript | 10 |
1 files changed, 1 insertions, 9 deletions
@@ -335,15 +335,7 @@ def build(bld): uselib=['M', 'CAIRO']) if bld.env.DOCS: - bld(features = 'subst', - source = 'doc/reference.doxygen.in', - target = 'doc/reference.doxygen', - install_path = '', - PUGL_VERSION = PUGL_VERSION, - PUGL_SRCDIR = os.path.abspath(bld.path.srcpath())) - - bld(features = 'doxygen', - doxyfile = 'doc/reference.doxygen') + autowaf.build_dox(bld, 'PUGL', PUGL_VERSION, top, out) def test(tst): |