diff options
author | David Robillard <d@drobilla.net> | 2019-08-18 13:16:52 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-09-07 14:40:39 +0200 |
commit | 92937b14c733a344d7554d2edfd449a7b4ad63ff (patch) | |
tree | 735bec4884bf819e5d74e68f15cbe3f660fe1597 /wscript | |
parent | dc9f1d852d3fba8ddcf7bb535810ad384900fe06 (diff) | |
download | pugl-92937b14c733a344d7554d2edfd449a7b4ad63ff.tar.gz pugl-92937b14c733a344d7554d2edfd449a7b4ad63ff.tar.bz2 pugl-92937b14c733a344d7554d2edfd449a7b4ad63ff.zip |
Improve documentation and use LV2 documentation style
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -275,15 +275,14 @@ def build(bld): if bld.env.DOCS: bld(features = 'subst', - source = 'Doxyfile.in', - target = 'Doxyfile', + source = 'doc/reference.doxygen.in', + target = 'doc/reference.doxygen', install_path = '', - name = 'Doxyfile', PUGL_VERSION = PUGL_VERSION, PUGL_SRCDIR = os.path.abspath(bld.path.srcpath())) bld(features = 'doxygen', - doxyfile = 'Doxyfile') + doxyfile = 'doc/reference.doxygen') def test(tst): |