diff options
author | David Robillard <d@drobilla.net> | 2012-05-09 16:38:49 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-05-09 16:38:49 +0000 |
commit | ffdf4624323af943a2f3f7241fa87d97afc50460 (patch) | |
tree | e6faffb9d979cba055bde24d1957420abdea851a /src/http/wscript | |
parent | 6932da9169a38a5a8eafc63357b9ede00cb46117 (diff) | |
download | ingen-ffdf4624323af943a2f3f7241fa87d97afc50460.tar.gz ingen-ffdf4624323af943a2f3f7241fa87d97afc50460.tar.bz2 ingen-ffdf4624323af943a2f3f7241fa87d97afc50460.zip |
Remove old HTTP and OSC stuff.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4329 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/http/wscript')
-rw-r--r-- | src/http/wscript | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/http/wscript b/src/http/wscript deleted file mode 100644 index dec805e3..00000000 --- a/src/http/wscript +++ /dev/null @@ -1,28 +0,0 @@ -#!/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 = ['../..'], - 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 = ['../..'], - name = 'libingen_http_client', - target = 'ingen_http_client', - install_path = '${LIBDIR}', - use = 'libingen_client') - autowaf.use_lib(bld, obj, 'RAUL SOUP') |