diff options
author | David Robillard <d@drobilla.net> | 2011-04-15 20:37:25 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-04-15 20:37:25 +0000 |
commit | 692d29dd5c57bbd226bd2bc91cfbd2329490a9bb (patch) | |
tree | 78ad4f3e120c1b02657405a6b8a5652ae32ff52a /wscript | |
parent | 42b469037c1b2bb55cd400a24cabfa29e7ae1ab2 (diff) | |
download | ingen-692d29dd5c57bbd226bd2bc91cfbd2329490a9bb.tar.gz ingen-692d29dd5c57bbd226bd2bc91cfbd2329490a9bb.tar.bz2 ingen-692d29dd5c57bbd226bd2bc91cfbd2329490a9bb.zip |
Move Shared::Module and Shared::World to shared directory.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3147 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -130,7 +130,6 @@ def build(bld): # Modules bld.recurse('src/engine') bld.recurse('src/serialisation') - bld.recurse('src/module') bld.recurse('src/shared') bld.recurse('src/client') @@ -143,7 +142,7 @@ def build(bld): obj.source = 'src/ingen/main.cpp' obj.includes = ['.', 'src', 'include'] obj.defines = 'VERSION="' + bld.env['INGEN_VERSION'] + '"' - obj.use = 'libingen_module libingen_shared' + obj.use = 'libingen_shared' obj.install_path = '${BINDIR}' autowaf.use_lib(bld, obj, 'GTHREAD GLIBMM SORD RAUL LV2CORE SLV2 INGEN LIBLO SOUP') |