OctaCore/src/server/meson.build

25 lines
567 B
Meson
Raw Normal View History

2020-04-15 19:04:04 +02:00
client_src = [
2020-04-16 20:23:28 +02:00
'../shared/crypto.cc',
'../shared/stream.cc',
'../shared/tools.cc',
'../engine/command.cc',
'../engine/server.cc',
'../engine/worldio.cc',
'../game/entities.cc',
'../game/server.cc'
2020-04-15 19:04:04 +02:00
]
threads_dep = dependency('threads')
zlib_dep = dependency('zlib')
executable('native_server',
client_src,
dependencies: [
threads_dep, libenet, zlib_dep
],
include_directories: octacore_includes,
cpp_args: ['-DSTANDALONE'],
install: true,
install_dir: join_paths(meson.source_root(), 'bin_unix')
)