diff options
author | Andrii Doroshenko (Xrayez) <xrayez@gmail.com> | 2020-07-26 00:06:07 +0300 |
---|---|---|
committer | Andrii Doroshenko (Xrayez) <xrayez@gmail.com> | 2020-07-26 00:06:07 +0300 |
commit | 9f649efe5d2595977d429625cca30ff7704c0a59 (patch) | |
tree | 258c242316e2721d5dc74a5c0388a4dbd2da5c16 /tests/SCsub | |
parent | 6f292f906e749f30ceb7f922df5639add61a5f88 (diff) |
Move `tests` to the top-level directory
Diffstat (limited to 'tests/SCsub')
-rw-r--r-- | tests/SCsub | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/SCsub b/tests/SCsub new file mode 100644 index 0000000000..cb1d35b12f --- /dev/null +++ b/tests/SCsub @@ -0,0 +1,9 @@ +#!/usr/bin/python + +Import("env") + +env.tests_sources = [] +env.add_source_files(env.tests_sources, "*.cpp") + +lib = env.add_library("tests", env.tests_sources) +env.Prepend(LIBS=[lib]) |