diff options
author | David Robillard <d@drobilla.net> | 2008-09-30 18:53:55 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-09-30 18:53:55 +0000 |
commit | e1c6990a81b3bc24308ff905e4196f03625a10b3 (patch) | |
tree | d2cd324c7d18c6e2a751a7afce536565aa092e97 /wscript | |
parent | e1d59a67788fd40ae5319a664bb36306b65de70a (diff) | |
download | ingen-e1c6990a81b3bc24308ff905e4196f03625a10b3.tar.gz ingen-e1c6990a81b3bc24308ff905e4196f03625a10b3.tar.bz2 ingen-e1c6990a81b3bc24308ff905e4196f03625a10b3.zip |
Install modules (mostly) the same place as autohell.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1555 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -48,6 +48,9 @@ def configure(conf): conf.env.append_value('CXXFLAGS', '-DCONFIG_H_PATH=\\\"waf-config.h\\\"') 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' bld.add_subdirs('src/engine') bld.add_subdirs('src/serialisation') bld.add_subdirs('src/module') |