blob: 1ef013c31459a0d83aae6a390c8f56e02f868d54 [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 Shelley6e365872020-10-23 22:00:05 -05007)
Ben Tyner9ae5ca42020-02-28 13:13:50 -06008
Zane Shelley61465db2020-10-30 14:53:11 -05009# Library dependencies.
10analyzer_deps = [
11 dbus_interfaces_dep,
12 libhei_dep,
13 sdbusplus_dep,
14]
15
Zane Shelleyc2528942020-12-02 15:42:42 -060016# Create static library.
17analyzer_lib = static_library(
18 'analyzer_lib',
19 analyzer_src,
20 include_directories : incdir,
21 dependencies : analyzer_deps,
22 cpp_args : test_arg,
23 install : false,
24)
25