From 4e834af5b5e63c6d258710368c8e43b92a81cf56 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 1 Oct 2008 23:45:51 +0000 Subject: Ingen documentation building. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1575 a436a847-0d15-0410-975c-d299462d15a1 --- wscript | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'wscript') diff --git a/wscript b/wscript index cb160236..a411a7cc 100644 --- a/wscript +++ b/wscript @@ -1,6 +1,7 @@ #!/usr/bin/env python import os import Params +import autowaf # Version of this package (even if built as a child) INGEN_VERSION = '0.5.1' @@ -56,11 +57,19 @@ def build(bld): opts = Params.g_options opts.datadir = opts.datadir or bld.env()['PREFIX'] + 'share' opts.moduledir = opts.moduledir or bld.env()['PREFIX'] + 'lib/ingen' + + # Modules bld.add_subdirs('src/engine') bld.add_subdirs('src/serialisation') bld.add_subdirs('src/module') bld.add_subdirs('src/shared') bld.add_subdirs('src/client') bld.add_subdirs('src/gui') + + # Program bld.add_subdirs('src/ingen') + + # Documentation + autowaf.build_dox(bld, 'INGEN', INGEN_VERSION, srcdir, blddir) + install_files('PREFIX', 'share/doc/ingen', blddir + '/default/doc/html/*') -- cgit v1.2.1