diff options
Diffstat (limited to '')
| -rw-r--r-- | bin/tests/SCsub | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/bin/tests/SCsub b/bin/tests/SCsub new file mode 100644 index 000000000..6613df9c0 --- /dev/null +++ b/bin/tests/SCsub @@ -0,0 +1,14 @@ +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]) + + |
