summaryrefslogtreecommitdiff
path: root/modules/enet/SCsub
diff options
context:
space:
mode:
authorFabio Alessandrelli <fabio.alessandrelli@gmail.com>2017-01-22 06:00:59 +0100
committerFabio Alessandrelli <fabio.alessandrelli@gmail.com>2017-03-24 02:30:05 +0100
commit38d457170a15fd9eb902cecc8c5dc401646cd0b8 (patch)
treee43ccf541b01664b49ed24572e289139f00fdb74 /modules/enet/SCsub
parent5bdbc0f762bf3a7cc38ebda0757de234c45b5f65 (diff)
Update ENet module to support custom ENet lib
Keep compatibility with upstream enet libraries
Diffstat (limited to 'modules/enet/SCsub')
-rw-r--r--modules/enet/SCsub4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/enet/SCsub b/modules/enet/SCsub
index fb22d1cff0..42a933a66d 100644
--- a/modules/enet/SCsub
+++ b/modules/enet/SCsub
@@ -10,6 +10,7 @@ env_enet = env_modules.Clone()
if (env['builtin_enet'] != 'no'):
thirdparty_dir = "#thirdparty/enet/"
thirdparty_sources = [
+ "godot.cpp",
"callbacks.c",
"compress.c",
"host.c",
@@ -17,12 +18,11 @@ if (env['builtin_enet'] != 'no'):
"packet.c",
"peer.c",
"protocol.c",
- "unix.c",
- "win32.c",
]
thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]
env_enet.add_source_files(env.modules_sources, thirdparty_sources)
env_enet.Append(CPPPATH=[thirdparty_dir])
+ env_enet.Append(CPPFLAGS=["-DGODOT_ENET"])
env_enet.add_source_files(env.modules_sources, "*.cpp")