21 lines
376 B
Meson
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
|