mirror of
https://github.com/godotengine/godot.git
synced 2026-02-23 23:51:00 +00:00
12 lines
168 B
Text
12 lines
168 B
Text
Import('env')
|
|
|
|
env.main_sources=[]
|
|
env.add_source_files(env.main_sources,"*.cpp")
|
|
|
|
Export('env')
|
|
|
|
lib = env.Library("main",env.main_sources)
|
|
|
|
env.Prepend(LIBS=[lib])
|
|
|
|
|