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', 7 'cpp_args=-Wno-unused-parameter' 8 ]) 9 10# libhei is available as a subproject 11subproject('libhei') 12 13subdir('src') 14subdir('attn') 15 16build_tests = get_option('tests') 17 18if not build_tests.disabled() 19 subdir('test') 20endif 21