diff options
Diffstat (limited to 'main/tests/SCsub')
-rw-r--r-- | main/tests/SCsub | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/main/tests/SCsub b/main/tests/SCsub new file mode 100644 index 0000000000..03495c0649 --- /dev/null +++ b/main/tests/SCsub @@ -0,0 +1,14 @@ +#!/usr/bin/python + +Import('env') + +env.tests_sources = [] +env.add_source_files(env.tests_sources, "*.cpp") + +Export('env') + +# SConscript('math/SCsub'); + +lib = env.Library("tests", env.tests_sources) + +env.Prepend(LIBS=[lib]) |