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