blob: 9dc0caae8aa408da6918f69a24bc9f7d0c177d77 [file] [log] [blame]
Zane Shelley248cbf82019-05-03 17:07:18 -05001project('openpower-hw-diags', 'cpp',
2 version: '0.1', meson_version: '>=0.49.0',
3 default_options: [
4 'warning_level=3',
5 'werror=true',
6 'cpp_std=c++17'
7 ])
8
9subdir('src')
Ben Tyneref320152020-01-09 10:31:23 -060010subdir('attn')
Zane Shelley248cbf82019-05-03 17:07:18 -050011
12build_tests = get_option('tests')
13
14if not build_tests.disabled()
15 subdir('test')
16endif