summaryrefslogtreecommitdiffstats
path: root/src/client/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/wscript')
-rw-r--r--src/client/wscript23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/client/wscript b/src/client/wscript
new file mode 100644
index 00000000..df575c0d
--- /dev/null
+++ b/src/client/wscript
@@ -0,0 +1,23 @@
+#!/usr/bin/env python
+from waflib.extras import autowaf as autowaf
+
+def build(bld):
+ obj = bld(features = 'cxx cxxshlib',
+ includes = ['../..'],
+ export_includes = ['../..'],
+ name = 'libingen_client',
+ target = 'ingen_client',
+ install_path = '${LIBDIR}',
+ use = 'libingen')
+ autowaf.use_lib(bld, obj, 'GLIBMM LV2 LILV SUIL RAUL SERD SORD SIGCPP')
+
+ obj.source = '''
+ BlockModel.cpp
+ ClientStore.cpp
+ GraphModel.cpp
+ ObjectModel.cpp
+ PluginModel.cpp
+ PluginUI.cpp
+ PortModel.cpp
+ ingen_client.cpp
+ '''