1# dependency to link sdbusplus support
2sdbusplus = dependency('sdbusplus', version : '>=1.0')
3
4# gather analyzer sources to be used here and elsewhere if needed
5analyzer_src = files(
6    'analyzer_main.cpp',
7    'hei_user_interface.cpp',
8    '../util/ffdc_file.cpp',
9    '../util/temporary_file.cpp',
10)
11
12# Create hardware error analyzer library
13analyzer = static_library('analyzer',
14                          analyzer_src,
15                          include_directories : incdir,
16                          dependencies : [ libhei_dep, sdbusplus ],
17                          cpp_args : test_arg,
18                          install : false)
19