blob: a660425baf81b8fa8afec835fe635332b3319371 [file] [log] [blame]
Brandon Kim0d136632022-07-14 00:06:09 +00001project(
2 'ipmiblob',
3 'cpp',
4 version: '0.1',
Patrick Williams58a690a2023-07-12 11:15:54 -05005 meson_version: '>=1.1.1',
Brandon Kim0d136632022-07-14 00:06:09 +00006 default_options: [
Patrick Williams58a690a2023-07-12 11:15:54 -05007 'cpp_std=c++23',
Brandon Kim0d136632022-07-14 00:06:09 +00008 'werror=true',
9 'warning_level=3',
10 'tests=' + (meson.is_subproject() ? 'disabled' : 'auto'),
11 ])
12
13subdir('src')
14if not get_option('tests').disabled()
15 subdir('test')
16endif