blob: 909155d0858938a6a1494fd3327c32b17411bfbb [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 Shelley6e365872020-10-23 22:00:05 -05005 'hei_user_interface.cpp',
Zane Shelleyf4bd5ff2020-11-05 22:26:04 -06006 'initialize_isolator.cpp',
Zane Shelley0b8368c2021-03-18 17:33:41 -05007 'resolution.cpp',
Zane Shelley6e365872020-10-23 22:00:05 -05008)
Ben Tyner9ae5ca42020-02-28 13:13:50 -06009
Zane Shelley61465db2020-10-30 14:53:11 -050010# Library dependencies.
11analyzer_deps = [
12 dbus_interfaces_dep,
13 libhei_dep,
14 sdbusplus_dep,
15]
16
Zane Shelleyc2528942020-12-02 15:42:42 -060017# Create static library.
18analyzer_lib = static_library(
19 'analyzer_lib',
20 analyzer_src,
21 include_directories : incdir,
22 dependencies : analyzer_deps,
23 cpp_args : test_arg,
24 install : false,
25)
26
Zane Shelley4f4f4aa2021-08-02 12:41:25 -050027# Install the RAS data files
28subdir('ras-data')
29