summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-05-27 18:41:44 +0000
committerDavid Robillard <d@drobilla.net>2011-05-27 18:41:44 +0000
commit4f2190ddea763edfb2d84816f23175f88d879934 (patch)
tree50be531ee27847e7f80f8447e88064e0058fd94b /wscript
parent39b0dfd67c27873e2f9301bcd89ccfe1cb73047a (diff)
downloadingen-4f2190ddea763edfb2d84816f23175f88d879934.tar.gz
ingen-4f2190ddea763edfb2d84816f23175f88d879934.tar.bz2
ingen-4f2190ddea763edfb2d84816f23175f88d879934.zip
Don't install private headers
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3339 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r--wscript5
1 files changed, 3 insertions, 2 deletions
diff --git a/wscript b/wscript
index cfd1284d..4882da20 100644
--- a/wscript
+++ b/wscript
@@ -122,8 +122,9 @@ def build(bld):
opts.moduledir = opts.moduledir or bld.env['PREFIX'] + 'lib/ingen'
# Headers
- bld.install_files('${INCLUDEDIR}/ingen',
- bld.path.ant_glob('include/ingen/*.hpp'))
+ for i in ['client', 'serialisation']:
+ bld.install_files('${INCLUDEDIR}/ingen/%s' % i,
+ bld.path.ant_glob('include/ingen/%s/*' % i))
# Modules
bld.recurse('src/client')