OctaCore/src/master/meson.build

22 lines
487 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/master.cc'
2020-04-15 19:04:04 +02:00
]
threads_dep = dependency('threads')
zlib_dep = dependency('zlib')
executable('native_master',
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')
)