2016-10-17 06:50:25 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Import('env')
|
|
|
|
|
2016-10-30 17:57:40 +00:00
|
|
|
env.scene_sources = []
|
2017-04-28 17:28:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Thirdparty code
|
|
|
|
thirdparty_dir = "#thirdparty/misc/"
|
|
|
|
thirdparty_sources = [
|
|
|
|
# C sources
|
|
|
|
"mikktspace.c",
|
|
|
|
]
|
|
|
|
thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]
|
|
|
|
env.add_source_files(env.scene_sources, thirdparty_sources)
|
|
|
|
|
|
|
|
|
|
|
|
# Godot's own sources
|
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
|
2016-10-31 23:24:30 +00:00
|
|
|
SConscript('main/SCsub')
|
|
|
|
SConscript('gui/SCsub')
|
|
|
|
SConscript('3d/SCsub')
|
|
|
|
SConscript('2d/SCsub')
|
|
|
|
SConscript('animation/SCsub')
|
|
|
|
SConscript('audio/SCsub')
|
|
|
|
SConscript('resources/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])
|
2017-04-28 17:28:21 +00:00
|
|
|
|
|
|
|
Export('env')
|