Working proof of concept

This commit is contained in:
King_DuckZ 2025-04-02 20:41:48 +01:00
commit 3dcfcc7f0c
6 changed files with 394 additions and 0 deletions

17
meson.build Normal file
View file

@ -0,0 +1,17 @@
project('ducktorrent', 'cpp',
version: '0.1.0',
meson_version: '>=0.56.0',
default_options: [
'buildtype=release',
'cpp_std=gnu++20',
'b_ndebug=if-release',
'c_std=c99',
],
)
boost_dep = dependency('boost', version: '>=1.75.0')
libstriezel_proj = subproject('libstriezel')
libstriezel_dep = libstriezel_proj.get_variable('libstriezel_dep')
subdir('src')