ducktorrent/meson.build
King_DuckZ 50f33300be Refactor higher level code into TorrentRead class
This also addresses the issue with paths of more than 1 item
so all torrents should now work and adds some error reporting
through exceptions
2025-04-07 01:01:52 +01:00

17 lines
321 B
Meson

project('ducktorrent', 'cpp',
version: '0.1.0',
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')