summaryrefslogtreecommitdiffstats
path: root/src/http/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-10-22 00:37:55 +0000
committerDavid Robillard <d@drobilla.net>2011-10-22 00:37:55 +0000
commitaf9b6c3e58688ca4ea291e92faf6e50e35c03128 (patch)
tree317f20d0298e3ae040d05eb4ae89a4297cb55aed /src/http/wscript
parent479e60b6900101b819499a21d4d0551397806201 (diff)
downloadingen-af9b6c3e58688ca4ea291e92faf6e50e35c03128.tar.gz
ingen-af9b6c3e58688ca4ea291e92faf6e50e35c03128.tar.bz2
ingen-af9b6c3e58688ca4ea291e92faf6e50e35c03128.zip
Add missing files
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3581 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/http/wscript')
-rw-r--r--src/http/wscript28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/http/wscript b/src/http/wscript
new file mode 100644
index 00000000..9d2d6049
--- /dev/null
+++ b/src/http/wscript
@@ -0,0 +1,28 @@
+#!/usr/bin/env python
+from waflib.extras import autowaf as autowaf
+
+def build(bld):
+ if bld.is_defined('HAVE_SOUP'):
+ obj = bld(features = 'cxx cxxshlib',
+ source = '''HTTPClientSender.cpp
+ HTTPEngineReceiver.cpp
+ HTTPSender.cpp
+ ingen_http_server.cpp''',
+ includes = ['../..', '../../include'],
+ name = 'libingen_http_server',
+ target = 'ingen_http_server',
+ install_path = '${LIBDIR}',
+ use = 'libingen_server')
+ autowaf.use_lib(bld, obj, 'RAUL SOUP')
+
+ obj = bld(features = 'cxx cxxshlib',
+ source = '''HTTPClientReceiver.cpp
+ HTTPEngineSender.cpp
+ HTTPSender.cpp
+ ingen_http_client.cpp''',
+ includes = ['../..', '../../include'],
+ name = 'libingen_http_client',
+ target = 'ingen_http_client',
+ install_path = '${LIBDIR}',
+ use = 'libingen_client')
+ autowaf.use_lib(bld, obj, 'RAUL SOUP')