Adding Project Files
diff --git a/wscript b/wscript
new file mode 100644
index 0000000..bb8df5b
--- /dev/null
+++ b/wscript
@@ -0,0 +1,25 @@
+# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
+VERSION='0.3'
+NAME="ndn-traffic"
+
+def options(opt):
+ opt.load('compiler_cxx')
+
+def configure(conf):
+ conf.load("compiler_cxx")
+ conf.check_cfg(package='libndn-cpp-dev', args=['--cflags', '--libs'], uselib_store='NDN_CPP', mandatory=True)
+
+def build (bld):
+ bld.program (
+ features = 'cxx',
+ target = 'ndntraffic',
+ source = 'ndn-traffic-client.cpp',
+ use = 'NDN_CPP',
+ )
+
+ bld.program (
+ features = 'cxx',
+ target = 'ndntrafficserver',
+ source = 'ndn-traffic-server.cpp',
+ use = 'NDN_CPP',
+ )