mirror of
https://github.com/godotengine/godot.git
synced 2024-11-24 21:22:48 +00:00
15 lines
224 B
Python
15 lines
224 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.add_library("main", env.main_sources)
|
|
|
|
env.Prepend(LIBS=[lib])
|