2016-10-17 08:50:25 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
Import("env")
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
env.scene_sources = []
|
2017-04-28 19:28:21 +02:00
|
|
|
|
|
|
|
# Thirdparty code
|
|
|
|
thirdparty_dir = "#thirdparty/misc/"
|
|
|
|
thirdparty_sources = [
|
2020-03-30 08:28:32 +02:00
|
|
|
# C++ sources
|
|
|
|
"easing_equations.cpp",
|
|
|
|
# C sources
|
|
|
|
"mikktspace.c",
|
2017-04-28 19:28:21 +02:00
|
|
|
]
|
|
|
|
thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]
|
|
|
|
|
2018-09-28 13:29:52 +02:00
|
|
|
env_thirdparty = env.Clone()
|
|
|
|
env_thirdparty.disable_warnings()
|
|
|
|
env_thirdparty.add_source_files(env.scene_sources, thirdparty_sources)
|
2017-04-28 19:28:21 +02:00
|
|
|
|
|
|
|
# Godot's own sources
|
2016-10-30 18:57:40 +01:00
|
|
|
env.add_source_files(env.scene_sources, "*.cpp")
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
|
2017-04-28 19:28:21 +02:00
|
|
|
# Chain load SCsubs
|
2020-03-30 08:28:32 +02: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 02:10:30 +01:00
|
|
|
|
|
|
|
|
2017-04-28 19:28:21 +02:00
|
|
|
# Build it all as a library
|
2017-11-28 21:27:57 +01:00
|
|
|
lib = env.add_library("scene", env.scene_sources)
|
2014-02-10 02:10:30 +01:00
|
|
|
env.Prepend(LIBS=[lib])
|