From 4f2190ddea763edfb2d84816f23175f88d879934 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 27 May 2011 18:41:44 +0000 Subject: Don't install private headers git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3339 a436a847-0d15-0410-975c-d299462d15a1 --- wscript | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'wscript') 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') -- cgit v1.2.1