summaryrefslogtreecommitdiffstats
path: root/src/http/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/http/wscript')
-rw-r--r--src/http/wscript28
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')