Files
matar/meson.build
Amneesh Singh 028c80f6cb comeback(?)
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2024-06-11 22:46:48 +05:30

19 lines
399 B
Meson

project('matar', 'cpp',
version : '0.1',
license : 'GPLv3',
default_options : ['warning_level=3',
'werror=true',
'optimization=3',
'cpp_std=c++23',
'default_library=static'])
compiler = meson.get_compiler('cpp')
subdir('include')
subdir('src')
subdir('apps')
if get_option('tests')
subdir('tests')
endif