blob: 46b71ebe823795f48f8624d68a516de3a569d5cb [file] [log] [blame]
project('flashupdate', ['cpp'],
version: '0.1', meson_version: '>=1.1.1',
default_options: [
'warning_level=3',
'werror=true',
'cpp_std=c++23',
'tests=' + (meson.is_subproject() ? 'disabled' : 'auto'),
]
)
subdir('include')
subdir('internal')
subdir('src')
if not get_option('tests').disabled()
subdir('test')
endif