blob: 93243923cddc8a0db294eb4e88e05588f26c6aba [file] [log] [blame]
Zane Shelleyc2528942020-12-02 15:42:42 -06001# Source files.
Zane Shelley6e365872020-10-23 22:00:05 -05002analyzer_src = files(
3 'analyzer_main.cpp',
Zane Shelleyd3b9bac2020-11-17 21:59:12 -06004 'create_pel.cpp',
Zane Shelley65fefb22021-10-18 15:35:26 -05005 'filter-root-cause.cpp',
Zane Shelley95135822021-08-23 09:00:05 -05006 'guard.cpp',
Zane Shelley6e365872020-10-23 22:00:05 -05007 'hei_user_interface.cpp',
Zane Shelleyf4bd5ff2020-11-05 22:26:04 -06008 'initialize_isolator.cpp',
Zane Shelleya9b44342021-08-08 17:15:52 -05009 'ras-data/ras-data-parser.cpp',
Zane Shelley0b8368c2021-03-18 17:33:41 -050010 'resolution.cpp',
Zane Shelley979e2872021-09-20 22:46:06 -050011 'service_data.cpp',
Zane Shelley6e365872020-10-23 22:00:05 -050012)
Ben Tyner9ae5ca42020-02-28 13:13:50 -060013
Zane Shelley61465db2020-10-30 14:53:11 -050014# Library dependencies.
15analyzer_deps = [
16 dbus_interfaces_dep,
17 libhei_dep,
Zane Shelley5191bae2021-08-04 22:48:28 -050018 nlohmann_json_dep,
Zane Shelley61465db2020-10-30 14:53:11 -050019 sdbusplus_dep,
Zane Shelley5191bae2021-08-04 22:48:28 -050020 valijson_dep,
Zane Shelley61465db2020-10-30 14:53:11 -050021]
22
Zane Shelleyc2528942020-12-02 15:42:42 -060023# Create static library.
24analyzer_lib = static_library(
25 'analyzer_lib',
26 analyzer_src,
27 include_directories : incdir,
28 dependencies : analyzer_deps,
Zane Shelleyd2854b72021-08-04 22:23:20 -050029 cpp_args : [ package_args, test_arg ],
Zane Shelleyc2528942020-12-02 15:42:42 -060030 install : false,
31)
32
Zane Shelleyd2854b72021-08-04 22:23:20 -050033# Install the RAS data files.
Zane Shelley4f4f4aa2021-08-02 12:41:25 -050034subdir('ras-data')
35