diff options
author | David Robillard <d@drobilla.net> | 2009-05-03 17:39:16 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-05-03 17:39:16 +0000 |
commit | 6012222c80c37be78db3f38a37f7d9a609a213a8 (patch) | |
tree | e67148bd53071ffe7172923430b60486bce28760 /src/ingen | |
parent | db6c699017528e6f7c3958b67422e6a936a92e73 (diff) | |
download | ingen-6012222c80c37be78db3f38a37f7d9a609a213a8.tar.gz ingen-6012222c80c37be78db3f38a37f7d9a609a213a8.tar.bz2 ingen-6012222c80c37be78db3f38a37f7d9a609a213a8.zip |
Update waf configuration header for new waf scheme (in 1.5.6).
Split low-level LV2 event buffer into separate class from EventBuffer (for reuse).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1958 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/ingen')
-rw-r--r-- | src/ingen/main.cpp | 2 | ||||
-rw-r--r-- | src/ingen/wscript | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ingen/main.cpp b/src/ingen/main.cpp index 7bce7408..31f4a4ad 100644 --- a/src/ingen/main.cpp +++ b/src/ingen/main.cpp @@ -15,7 +15,7 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "wafconfig.h" +#include "ingen-config.h" #include <iostream> #include <string> #include <signal.h> diff --git a/src/ingen/wscript b/src/ingen/wscript index 6cfcf47d..469fa752 100644 --- a/src/ingen/wscript +++ b/src/ingen/wscript @@ -5,7 +5,7 @@ def build(bld): obj = bld.new_task_gen('cxx', 'program') obj.target = 'ingen' obj.source = 'main.cpp cmdline.c' - obj.includes = ['../common', '../'] + obj.includes = ['..', '../..', '../common'] obj.defines = 'VERSION="' + bld.env['INGEN_VERSION'] + '"' obj.uselib_local = 'libingen_module libingen_shared' obj.install_path = '${BINDIR}' |