blob: 9daae805e2f72b5eba7f65c4b78f4e05efcaa9a6 [file] [log] [blame]
Brandon Kim0d136632022-07-14 00:06:09 +00001project(
Patrick Williamsfae994b2025-02-01 08:37:51 -05002 'ipmiblob',
3 'cpp',
4 version: '0.1',
5 meson_version: '>=1.1.1',
6 default_options: [
7 'cpp_std=c++23',
8 'werror=true',
9 'warning_level=3',
10 'tests=' + (meson.is_subproject() ? 'disabled' : 'auto'),
11 ],
12)
Brandon Kim0d136632022-07-14 00:06:09 +000013
14subdir('src')
Patrick Williams60614782025-01-30 17:48:02 -050015if get_option('tests').allowed()
Patrick Williamsfae994b2025-02-01 08:37:51 -050016 subdir('test')
Brandon Kim0d136632022-07-14 00:06:09 +000017endif