Working proof of concept
This commit is contained in:
commit
3dcfcc7f0c
6 changed files with 394 additions and 0 deletions
17
meson.build
Normal file
17
meson.build
Normal 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')
|
Loading…
Add table
Add a link
Reference in a new issue