blob: 139d66f569646eaa7ab11d1ef926a6f6594179c9 [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',
Ben Tyner92e39fd2020-02-05 18:11:02 -06006 'cpp_std=c++17',
7 'cpp_args=-Wno-unused-parameter'
Zane Shelley248cbf82019-05-03 17:07:18 -05008 ])
9
Ben Tyner92e39fd2020-02-05 18:11:02 -060010# libhei is available as a subproject
11subproject('libhei')
12
Zane Shelley248cbf82019-05-03 17:07:18 -050013subdir('src')
Ben Tyneref320152020-01-09 10:31:23 -060014subdir('attn')
Zane Shelley248cbf82019-05-03 17:07:18 -050015
16build_tests = get_option('tests')
17
18if not build_tests.disabled()
19 subdir('test')
20endif