| 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 |