godot/main/SCsub
Rémi Verschelde 8b7a86ec7b Move tests again from core to main
As advised by @reduz, as tests depend on other libs.
2017-01-08 21:33:37 +01:00

15 lines
220 B
Python

#!/usr/bin/env python
Import('env')
env.main_sources = []
env.add_source_files(env.main_sources, "*.cpp")
Export('env')
SConscript('tests/SCsub')
lib = env.Library("main", env.main_sources)
env.Prepend(LIBS=[lib])