abacus: bootstrap build system

This commit is contained in:
Bruno BELANYI 2021-08-19 21:32:33 +02:00
commit 5b57981af7
6 changed files with 57 additions and 0 deletions

13
meson.build Normal file
View file

@ -0,0 +1,13 @@
project(
'abacus',
'cpp',
version: '0.0.0',
license: 'MIT',
default_options: [
'warning_level=3',
'cpp_std=c++17',
],
)
subdir('src')
subdir('tests')