1# Source files.
2analyzer_src = files(
3    'analyzer_main.cpp',
4    'create_pel.cpp',
5    'guard.cpp',
6    'hei_user_interface.cpp',
7    'initialize_isolator.cpp',
8    'ras-data/ras-data-parser.cpp',
9    'resolution.cpp',
10)
11
12# Library dependencies.
13analyzer_deps = [
14    dbus_interfaces_dep,
15    libhei_dep,
16    nlohmann_json_dep,
17    sdbusplus_dep,
18    valijson_dep,
19]
20
21# Create static library.
22analyzer_lib = static_library(
23    'analyzer_lib',
24    analyzer_src,
25    include_directories : incdir,
26    dependencies : analyzer_deps,
27    cpp_args : [ package_args, test_arg ],
28    install : false,
29)
30
31# Install the RAS data files.
32subdir('ras-data')
33
34