aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/wscript')
-rw-r--r--src/engine/wscript5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/engine/wscript b/src/engine/wscript
index 35f1303..1566a72 100644
--- a/src/engine/wscript
+++ b/src/engine/wscript
@@ -5,6 +5,7 @@ def build(bld):
core_source = '''
Action.cpp
ActionFactory.cpp
+ Controller.cpp
Edge.cpp
Engine.cpp
JackDriver.cpp
@@ -18,6 +19,8 @@ def build(bld):
Recorder.cpp
SMFDriver.cpp
Stateful.cpp
+ Updates.cpp
+ URIs.cpp
'''
if bld.env['HAVE_EUGENE']:
core_source += '''
@@ -27,7 +30,7 @@ def build(bld):
obj = bld(features = 'cxx cxxshlib')
obj.source = core_source
obj.export_includes = ['.']
- obj.includes = ['.', '../..']
+ obj.includes = ['.', '..', '../..']
obj.name = 'libmachina_engine'
obj.target = 'machina_engine'
core_libs = 'GLIBMM GTHREAD RAUL REDLANDMM JACK'