2
0
mirror of https://github.com/godotengine/godot.git synced 2025-02-11 22:35:15 +08:00
godot/main/tests/SCsub

10 lines
181 B
Plaintext
Raw Normal View History

#!/usr/bin/python
2014-02-10 09:10:30 +08:00
Import('env')
env.tests_sources = []
env.add_source_files(env.tests_sources, "*.cpp")
2014-02-10 09:10:30 +08:00
lib = env.add_library("tests", env.tests_sources)
2014-02-10 09:10:30 +08:00
env.Prepend(LIBS=[lib])