summaryrefslogtreecommitdiffstats
path: root/src/libs/client/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/client/wscript')
-rw-r--r--src/libs/client/wscript35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/libs/client/wscript b/src/libs/client/wscript
deleted file mode 100644
index 6b4408a7..00000000
--- a/src/libs/client/wscript
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/usr/bin/env python
-import Params
-
-def build(bld):
- obj = bld.create_obj('cpp', 'shlib')
- obj.source = '''
- ClientStore.cpp
- NodeModel.cpp
- ObjectModel.cpp
- PatchModel.cpp
- PluginModel.cpp
- PluginUI.cpp
- PortModel.cpp
- ThreadedSigClientInterface.cpp
- client.cpp
- '''
-
- if bld.env()['HAVE_SOUP']:
- obj.source += '''
- HTTPClientReceiver.cpp
- HTTPEngineSender.cpp
- '''
-
- if bld.env()['HAVE_XML2']:
- obj.source += ' DeprecatedLoader.cpp '
-
- if bld.env()['HAVE_LIBLO']:
- obj.source += ' OSCClientReceiver.cpp OSCEngineSender.cpp '
-
- obj.includes = ['..', '../../common', '../..']
- obj.name = 'libingen_client'
- obj.target = 'ingen_client'
- obj.uselib = 'GLIBMM SLV2 RAUL REDLANDMM SOUP XML2 SIGCPP'
- obj.vnum = '0.0.0'
-