godot/main/tests/SCsub

10 lines
181 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
lib = env.add_library("tests", env.tests_sources)
2014-02-10 02:10:30 +01:00
env.Prepend(LIBS=[lib])