diff options
author | David Robillard <d@drobilla.net> | 2008-07-30 01:37:13 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-07-30 01:37:13 +0000 |
commit | 0fe061cde1c419306bb4d3bc3542dda4d92178e7 (patch) | |
tree | 6a9996eeacc617658ee685ff27e9fb6cdefc3433 /src/bindings | |
parent | 2fa588b481e717e823e4b049d0e65b8e99e45628 (diff) | |
download | ingen-0fe061cde1c419306bb4d3bc3542dda4d92178e7.tar.gz ingen-0fe061cde1c419306bb4d3bc3542dda4d92178e7.tar.bz2 ingen-0fe061cde1c419306bb4d3bc3542dda4d92178e7.zip |
Fix building with language bindings.
git-svn-id: http://svn.drobilla.net/lad/ingen@1312 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/bindings')
-rw-r--r-- | src/bindings/Client.hpp | 2 | ||||
-rw-r--r-- | src/bindings/Makefile.am | 2 | ||||
-rw-r--r-- | src/bindings/ingen_bindings.cpp | 3 |
3 files changed, 5 insertions, 2 deletions
diff --git a/src/bindings/Client.hpp b/src/bindings/Client.hpp index 41479676..6f4010b1 100644 --- a/src/bindings/Client.hpp +++ b/src/bindings/Client.hpp @@ -42,6 +42,7 @@ public: virtual void new_plugin(const std::string& uri, const std::string& type_uri, + const std::string& symbol, const std::string& name) {} virtual void new_patch(const std::string& path, uint32_t poly) {} @@ -52,6 +53,7 @@ public: uint32_t num_ports) {} virtual void new_port(const std::string& path, + uint32_t index, const std::string& data_type, bool is_output) {} diff --git a/src/bindings/Makefile.am b/src/bindings/Makefile.am index 3bc4c64d..016a6596 100644 --- a/src/bindings/Makefile.am +++ b/src/bindings/Makefile.am @@ -1,4 +1,4 @@ -FLAGS = @RAUL_CFLAGS@ @GLIBMM_CFLAGS@ -I$(top_srcdir)/ingen/src/common +FLAGS = @INGEN_CFLAGS@ @RAUL_CFLAGS@ @GLIBMM_CFLAGS@ -I$(top_srcdir)/ingen/src/common LIBS = @RAUL_LIBS@ @GLIBMM_LIBS@ -lpython2.4 AM_CXXFLAGS = -I/usr/include/python2.4 $(FLAGS) diff --git a/src/bindings/ingen_bindings.cpp b/src/bindings/ingen_bindings.cpp index 91832faf..30edb8e1 100644 --- a/src/bindings/ingen_bindings.cpp +++ b/src/bindings/ingen_bindings.cpp @@ -1,7 +1,8 @@ #include <iostream> #include "python2.4/Python.h" #include "ingen_bindings.hpp" -#include "../libs/engine/Engine.hpp" +#include "engine/Engine.hpp" +#include "module/World.hpp" using namespace std; |