dissect: import code from ndn-cxx repository
Code is copied from ndn-cxx:commit:6f7cfd02d250721567dbe88cf64f24867ba32262,
with minor changes for changing include paths.
refs #2848
Change-Id: I240346d351123ff1284598d95839a2cfa79254f6
diff --git a/tools/dissect/wscript b/tools/dissect/wscript
new file mode 100644
index 0000000..748a292
--- /dev/null
+++ b/tools/dissect/wscript
@@ -0,0 +1,10 @@
+# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
+top = '../..'
+
+def build(bld):
+ bld.program(
+ features='cxx',
+ target='../../bin/ndn-dissect',
+ source='ndn-dissect.cpp',
+ use='core-objects',
+ )