godot/main/tests/SCsub

15 lines
222 B
Plaintext
Raw Normal View History

#!/usr/bin/python
2014-02-10 02:10:30 +01:00
Import('env')
env.tests_sources = []
env.add_source_files(env.tests_sources, "*.cpp")
2014-02-10 02:10:30 +01:00
Export('env')
# SConscript('math/SCsub');
2014-02-10 02:10:30 +01:00
lib = env.Library("tests", env.tests_sources)
2014-02-10 02:10:30 +01:00
env.Prepend(LIBS=[lib])