xref: /openbmc/phosphor-watchdog/meson.build (revision cf4ce3c1)
1project(
2  'phosphor-watchdog',
3  'cpp',
4  version: '0.1',
5  meson_version: '>=0.57.0',
6  default_options: [
7    'warning_level=3',
8    'cpp_std=c++20',
9  ])
10
11subdir('src')
12
13if not get_option('tests').disabled()
14  subdir('test')
15endif
16