1# gather analyzer sources to be used here and elsewhere if needed
2analyzer_src = files(
3    'analyzer_main.cpp',
4    'create_pel.cpp',
5    'hei_user_interface.cpp',
6    'initialize_isolator.cpp',
7    '../util/ffdc_file.cpp',
8    '../util/pdbg.cpp',
9    '../util/temporary_file.cpp',
10)
11
12# Library dependencies.
13analyzer_deps = [
14    dbus_interfaces_dep,
15    libhei_dep,
16    sdbusplus_dep,
17]
18
19# Create hardware error analyzer library
20analyzer = static_library('analyzer',
21                          analyzer_src,
22                          include_directories : incdir,
23                          dependencies : analyzer_deps,
24                          cpp_args : test_arg,
25                          install : false)
26