2016-10-17 14:50:25 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-03-30 14:28:32 +08:00
|
|
|
Import("env")
|
2014-02-10 09:10:30 +08:00
|
|
|
|
2016-10-31 01:57:40 +08:00
|
|
|
env.scene_sources = []
|
2017-04-29 01:28:21 +08:00
|
|
|
|
2020-12-17 23:01:36 +08:00
|
|
|
# Godot source files
|
2016-10-31 01:57:40 +08:00
|
|
|
env.add_source_files(env.scene_sources, "*.cpp")
|
2014-02-10 09:10:30 +08:00
|
|
|
|
2017-04-29 01:28:21 +08:00
|
|
|
# Chain load SCsubs
|
2020-03-30 14:28:32 +08:00
|
|
|
SConscript("main/SCsub")
|
|
|
|
SConscript("gui/SCsub")
|
|
|
|
SConscript("3d/SCsub")
|
|
|
|
SConscript("2d/SCsub")
|
|
|
|
SConscript("animation/SCsub")
|
|
|
|
SConscript("audio/SCsub")
|
|
|
|
SConscript("resources/SCsub")
|
|
|
|
SConscript("debugger/SCsub")
|
2014-02-10 09:10:30 +08:00
|
|
|
|
2017-04-29 01:28:21 +08:00
|
|
|
# Build it all as a library
|
2017-11-29 04:27:57 +08:00
|
|
|
lib = env.add_library("scene", env.scene_sources)
|
2014-02-10 09:10:30 +08:00
|
|
|
env.Prepend(LIBS=[lib])
|