diff options
-rw-r--r-- | wscript | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -206,6 +206,8 @@ def lint(ctx): def upload_docs(ctx): import shutil + + # Ontology documentation specgendir = '/usr/local/share/lv2specgen/' shutil.copy(specgendir + 'style.css', 'build') os.system('lv2specgen.py --list-email=ingen@drobilla.net --list-page=http://lists.drobilla.net/listinfo.cgi/ingen-drobilla.net bundles/ingen.lv2/ingen.ttl %s style.css build/ingen.html' % specgendir) @@ -213,6 +215,10 @@ def upload_docs(ctx): os.system('rsync -avz -e ssh build/ingen.html drobilla@drobilla.net:~/drobilla.net/ns/') os.system('rsync -avz -e ssh %s/style.css drobilla@drobilla.net:~/drobilla.net/ns/' % specgendir) + # Doxygen documentation + os.system('rsync -ravz --delete -e ssh build/doc/html/* drobilla@drobilla.net:~/drobilla.net/docs/ingen/') + + def test(ctx): os.environ['PATH'] = 'tests' + os.pathsep + os.getenv('PATH') os.environ['LD_LIBRARY_PATH'] = os.path.join('src') |