meson.build (ef3201540b8d3b2b7ab9202781490474f2f783e1) | meson.build (92e39fd955875ede90744dc8956b7530920a6a23) |
---|---|
1project('openpower-hw-diags', 'cpp', 2 version: '0.1', meson_version: '>=0.49.0', 3 default_options: [ 4 'warning_level=3', 5 'werror=true', | 1project('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' | 6 'cpp_std=c++17', 7 'cpp_args=-Wno-unused-parameter' |
7 ]) 8 | 8 ]) 9 |
10# libhei is available as a subproject 11subproject('libhei') 12 |
|
9subdir('src') 10subdir('attn') 11 12build_tests = get_option('tests') 13 14if not build_tests.disabled() 15 subdir('test') 16endif | 13subdir('src') 14subdir('attn') 15 16build_tests = get_option('tests') 17 18if not build_tests.disabled() 19 subdir('test') 20endif |