blob: 139d66f569646eaa7ab11d1ef926a6f6594179c9 [file] [log] [blame]
project('openpower-hw-diags', 'cpp',
version: '0.1', meson_version: '>=0.49.0',
default_options: [
'warning_level=3',
'werror=true',
'cpp_std=c++17',
'cpp_args=-Wno-unused-parameter'
])
# libhei is available as a subproject
subproject('libhei')
subdir('src')
subdir('attn')
build_tests = get_option('tests')
if not build_tests.disabled()
subdir('test')
endif