123456789101112131415161718192021222324252627 |
- Import('env')
- Import('env_modules')
- # Thirdparty source files
- if (env["enet"] != "system"): # builtin
- thirdparty_dir = "#thirdparty/enet/"
- thirdparty_enet_sources = [
- "callbacks.c",
- "compress.c",
- "host.c",
- "list.c",
- "packet.c",
- "peer.c",
- "protocol.c",
- "unix.c",
- "win32.c",
- ]
- thirdparty_enet_sources = [thirdparty_dir + file for file in thirdparty_enet_sources]
- env_modules.add_source_files(env.modules_sources, thirdparty_enet_sources)
- env_modules.Append(CPPPATH = [thirdparty_dir])
- env_modules.add_source_files(env.modules_sources, "*.cpp")
- Export('env_modules')
- Export('env')
|