2016-10-17 06:50:25 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
Import("env")
|
|
|
|
Import("env_modules")
|
2016-08-14 16:29:25 +00:00
|
|
|
|
2016-10-13 16:54:00 +00:00
|
|
|
env_enet = env_modules.Clone()
|
|
|
|
|
2018-01-13 14:16:11 +00:00
|
|
|
# Thirdparty source files
|
|
|
|
|
2020-12-17 15:01:36 +00:00
|
|
|
thirdparty_obj = []
|
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
if env["builtin_enet"]:
|
2016-10-30 17:44:57 +00:00
|
|
|
thirdparty_dir = "#thirdparty/enet/"
|
|
|
|
thirdparty_sources = [
|
2017-01-22 05:00:59 +00:00
|
|
|
"godot.cpp",
|
2016-10-30 17:44:57 +00:00
|
|
|
"callbacks.c",
|
|
|
|
"compress.c",
|
|
|
|
"host.c",
|
|
|
|
"list.c",
|
|
|
|
"packet.c",
|
|
|
|
"peer.c",
|
|
|
|
"protocol.c",
|
|
|
|
]
|
|
|
|
thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]
|
2016-10-10 17:50:51 +00:00
|
|
|
|
2019-04-30 11:12:02 +00:00
|
|
|
env_enet.Prepend(CPPPATH=[thirdparty_dir])
|
2019-07-03 07:16:20 +00:00
|
|
|
env_enet.Append(CPPDEFINES=["GODOT_ENET"])
|
2016-10-10 17:50:51 +00:00
|
|
|
|
2018-09-28 11:29:52 +00:00
|
|
|
env_thirdparty = env_enet.Clone()
|
|
|
|
env_thirdparty.disable_warnings()
|
2020-12-17 15:01:36 +00:00
|
|
|
env_thirdparty.add_source_files(thirdparty_obj, thirdparty_sources)
|
|
|
|
env.modules_sources += thirdparty_obj
|
|
|
|
|
|
|
|
|
|
|
|
# Godot source files
|
|
|
|
|
|
|
|
module_obj = []
|
|
|
|
|
|
|
|
env_enet.add_source_files(module_obj, "*.cpp")
|
|
|
|
env.modules_sources += module_obj
|
2018-09-28 11:29:52 +00:00
|
|
|
|
2020-12-17 15:01:36 +00:00
|
|
|
# Needed to force rebuilding the module files when the thirdparty library is updated.
|
|
|
|
env.Depends(module_obj, thirdparty_obj)
|