summaryrefslogtreecommitdiff
path: root/tests/SCsub
diff options
context:
space:
mode:
Diffstat (limited to 'tests/SCsub')
-rw-r--r--tests/SCsub15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/SCsub b/tests/SCsub
new file mode 100644
index 0000000000..9c32eb8ec3
--- /dev/null
+++ b/tests/SCsub
@@ -0,0 +1,15 @@
+#!/usr/bin/python
+
+Import("env")
+
+env.tests_sources = []
+
+env_tests = env.Clone()
+
+# Enable test framework and inform it of configuration method.
+env_tests.Append(CPPDEFINES=["DOCTEST_CONFIG_IMPLEMENT"])
+
+env_tests.add_source_files(env.tests_sources, "*.cpp")
+
+lib = env_tests.add_library("tests", env.tests_sources)
+env.Prepend(LIBS=[lib])