ducktorrent/meson.build
2025-04-07 22:57:15 +01:00

21 lines
376 B
Meson

project('ducktorrent', 'cpp',
version: '0.2.1',
meson_version: '>=0.63.0',
default_options: [
'buildtype=release',
'cpp_std=gnu++23',
'b_ndebug=if-release',
'c_std=c99',
],
license: 'GPL3+',
)
boost_dep = dependency('boost', version: '>=1.75.0')
libstriezel_dep = dependency('libstriezel')
subdir('src')
if get_option('build_testing')
subdir('test')
endif