build: Create build environment
Change-Id: I6c65db1513f8917d10518a12c29e330aabeda89b
diff --git a/tests/wscript b/tests/wscript
new file mode 100644
index 0000000..c65b260
--- /dev/null
+++ b/tests/wscript
@@ -0,0 +1,14 @@
+# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
+
+from waflib import Utils
+
+top = '..'
+
+def build(bld):
+ unittests = bld.program(
+ target = "../unit-tests",
+ features = "cxx cxxprogram",
+ source = bld.path.ant_glob(['**/*.cpp']),
+ use = 'ndn-repo-objects',
+ install_path = None,
+ )