project('FeatherMC', ['c', 'cpp'], version : '0.0', meson_version : '>= 0.55', default_options : [ 'warning_level=2', ]) add_project_arguments('-DNOMINMAX', language : 'cpp') feather_compiler = meson.get_compiler('cpp') feather_cpp_std = 'c++17' feather_platform = target_machine.system() if feather_compiler.get_id() == 'msvc' add_project_arguments('/std:' + feather_cpp_std, language : 'cpp') endif threads_dep = dependency('threads') cmake = import('cmake') libevent_vars = cmake.subproject_options() libevent_vars.add_cmake_defines({ 'EVENT__DISABLE_OPENSSL' : true, 'EVENT__DISABLE_MBEDTLS' : true, 'EVENT__DISABLE_BENCHMARK' : true, 'EVENT__DISABLE_TESTS' : true, 'EVENT__DISABLE_REGRESS' : true, 'EVENT__DISABLE_SAMPLES' : true, 'EVENT__LIBRARY_TYPE' : 'STATIC', }) libevent_vars.set_install(false) libevent_proj = cmake.subproject('libevent', options : libevent_vars) libevent_dep = libevent_proj.dependency('event_static') feather_deps = [ threads_dep, libevent_dep ] if feather_platform == 'windows' ws2_32_dep = feather_compiler.find_library('ws2_32') iphlpapi_dep = feather_compiler.find_library('iphlpapi') feather_deps += [ ws2_32_dep, iphlpapi_dep ] endif subdir('src')