repo: data publisher

Change-Id: Ieda373e18ee11b4584ca223ee23cee4b7fcbde12
refs #1829
diff --git a/examples/wscript b/examples/wscript
new file mode 100644
index 0000000..03a1b93
--- /dev/null
+++ b/examples/wscript
@@ -0,0 +1,14 @@
+# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
+
+top = '..'
+
+def build(bld):
+    if bld.env['WITH_EXAMPLES']:
+        for app in bld.path.ant_glob('*.cpp'):
+            bld(features=['cxx', 'cxxprogram'],
+                target='%s' % (str(app.change_ext('', '.cpp'))),
+                source=app,
+                use='NDN_CXX',
+                includes="../src",
+                install_path=None,
+                )