2018-05-11 02:00:16 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
Import("env")
|
|
|
|
Import("env_modules")
|
2018-05-11 02:00:16 +02:00
|
|
|
|
|
|
|
env_upnp = env_modules.Clone()
|
|
|
|
|
|
|
|
# Thirdparty source files
|
|
|
|
|
2020-12-17 16:01:36 +01:00
|
|
|
thirdparty_obj = []
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
if env["builtin_miniupnpc"]:
|
2018-05-11 02:00:16 +02:00
|
|
|
thirdparty_dir = "#thirdparty/miniupnpc/"
|
|
|
|
thirdparty_sources = [
|
2021-03-14 12:07:28 +01:00
|
|
|
"igd_desc_parse.c",
|
2018-05-11 02:00:16 +02:00
|
|
|
"miniupnpc.c",
|
2021-03-14 12:07:28 +01:00
|
|
|
"minixml.c",
|
|
|
|
"minisoap.c",
|
|
|
|
"minissdpc.c",
|
2018-05-11 02:00:16 +02:00
|
|
|
"miniwget.c",
|
2021-03-14 12:07:28 +01:00
|
|
|
"upnpcommands.c",
|
2018-05-11 02:00:16 +02:00
|
|
|
"upnpdev.c",
|
2021-03-14 12:07:28 +01:00
|
|
|
"upnpreplyparse.c",
|
2018-05-11 02:00:16 +02:00
|
|
|
"connecthostport.c",
|
|
|
|
"portlistingparse.c",
|
2021-03-14 12:07:28 +01:00
|
|
|
"receivedata.c",
|
|
|
|
"addr_is_reserved.c",
|
2018-05-11 02:00:16 +02:00
|
|
|
]
|
2019-06-30 17:31:51 +02:00
|
|
|
thirdparty_sources = [thirdparty_dir + "miniupnpc/" + file for file in thirdparty_sources]
|
2018-05-11 02:00:16 +02:00
|
|
|
|
2019-04-30 13:12:02 +02:00
|
|
|
env_upnp.Prepend(CPPPATH=[thirdparty_dir])
|
2019-07-03 09:16:20 +02:00
|
|
|
env_upnp.Append(CPPDEFINES=["MINIUPNP_STATICLIB"])
|
|
|
|
env_upnp.Append(CPPDEFINES=["MINIUPNPC_SET_SOCKET_TIMEOUT"])
|
2018-05-11 02:00:16 +02:00
|
|
|
|
2018-09-28 13:29:52 +02:00
|
|
|
env_thirdparty = env_upnp.Clone()
|
|
|
|
env_thirdparty.disable_warnings()
|
2020-12-17 16:01:36 +01:00
|
|
|
env_thirdparty.add_source_files(thirdparty_obj, thirdparty_sources)
|
|
|
|
env.modules_sources += thirdparty_obj
|
|
|
|
|
2018-09-28 13:29:52 +02:00
|
|
|
|
|
|
|
# Godot source files
|
2020-12-17 16:01:36 +01:00
|
|
|
|
|
|
|
module_obj = []
|
|
|
|
|
|
|
|
env_upnp.add_source_files(module_obj, "*.cpp")
|
|
|
|
env.modules_sources += module_obj
|
|
|
|
|
|
|
|
# Needed to force rebuilding the module files when the thirdparty library is updated.
|
|
|
|
env.Depends(module_obj, thirdparty_obj)
|