diff options
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]) |