2016-10-17 06:50:25 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2016-08-14 16:29:25 +00:00
|
|
|
Import('env')
|
2016-10-10 17:50:51 +00:00
|
|
|
Import('env_modules')
|
2016-08-14 16:29:25 +00:00
|
|
|
|
2016-10-10 17:50:51 +00:00
|
|
|
# Thirdparty source files
|
2016-08-14 16:29:25 +00:00
|
|
|
|
2016-10-13 16:54:00 +00:00
|
|
|
env_enet = env_modules.Clone()
|
|
|
|
|
2016-11-02 23:23:55 +00:00
|
|
|
if (env['builtin_enet'] != 'no'):
|
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
|
|
|
|
2016-10-30 17:44:57 +00:00
|
|
|
env_enet.add_source_files(env.modules_sources, thirdparty_sources)
|
2016-10-30 17:57:40 +00:00
|
|
|
env_enet.Append(CPPPATH=[thirdparty_dir])
|
2017-01-22 05:00:59 +00:00
|
|
|
env_enet.Append(CPPFLAGS=["-DGODOT_ENET"])
|
2016-10-10 17:50:51 +00:00
|
|
|
|
2016-10-13 16:54:00 +00:00
|
|
|
env_enet.add_source_files(env.modules_sources, "*.cpp")
|