2016-10-17 08:50:25 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
Import("env")
|
|
|
|
Import("env_modules")
|
2016-08-14 18:29:25 +02:00
|
|
|
|
2016-10-13 18:54:00 +02:00
|
|
|
env_enet = env_modules.Clone()
|
|
|
|
|
2018-01-13 15:16:11 +01:00
|
|
|
# Thirdparty source files
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
if env["builtin_enet"]:
|
2016-10-30 18:44:57 +01:00
|
|
|
thirdparty_dir = "#thirdparty/enet/"
|
|
|
|
thirdparty_sources = [
|
2017-01-22 06:00:59 +01:00
|
|
|
"godot.cpp",
|
2016-10-30 18:44:57 +01: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 19:50:51 +02:00
|
|
|
|
2019-04-30 13:12:02 +02:00
|
|
|
env_enet.Prepend(CPPPATH=[thirdparty_dir])
|
2019-07-03 09:16:20 +02:00
|
|
|
env_enet.Append(CPPDEFINES=["GODOT_ENET"])
|
2016-10-10 19:50:51 +02:00
|
|
|
|
2018-09-28 13:29:52 +02:00
|
|
|
env_thirdparty = env_enet.Clone()
|
|
|
|
env_thirdparty.disable_warnings()
|
|
|
|
env_thirdparty.add_source_files(env.modules_sources, thirdparty_sources)
|
|
|
|
|
2016-10-13 18:54:00 +02:00
|
|
|
env_enet.add_source_files(env.modules_sources, "*.cpp")
|