blob: 47717232402288aac0801ed2b4ef0efbc6707426 [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')
Patrick Williams60614782025-01-30 17:48:02 -050014if get_option('tests').allowed()
Brandon Kim0d136632022-07-14 00:06:09 +000015 subdir('test')
16endif