FeatherMC/src/meson.build

20 lines
497 B
Meson

feather_src = [
'Main.cpp',
'DedicatedServer.cpp',
'network/NetworkManager.cpp',
'network/TCPListener.cpp',
'network/Buffer.cpp',
'util/StringUtil.cpp',
'config/Properties.cpp',
'config/ServerProperties.cpp',
]
executable('FeatherMC', feather_src,
dependencies : feather_deps,
include_directories : include_directories('.'),
install : true,
install_dir : meson.source_root() + '/bin',
override_options : [ 'cpp_std=' + feather_cpp_std ])