Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@germandiagogomez
Created May 26, 2021 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save germandiagogomez/3557830e7c124a384ad8ba2206646121 to your computer and use it in GitHub Desktop.
Save germandiagogomez/3557830e7c124a384ad8ba2206646121 to your computer and use it in GitHub Desktop.
Initial meson.build file
project('onionbase85',
'cpp',
default_options : ['cpp_std=c++2a'])
subdir('src')
catch2_dep = dependency('catch2', fallback : ['catch2', 'catch2_dep'])
test_decoding = executable('testDecoding', ['TestDecoding.cpp'],
dependencies :
[catch2_dep])
test('Base85 decoding tests', test_decoding)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment