blob: 092a75902caaa5d8cab6a5767309766709352282 [file] [log] [blame]
Zane Shelley9fb73932020-09-15 13:34:57 -05001# dependency to link sdbusplus support
2sdbusplus = dependency('sdbusplus', version : '>=1.0')
3
Ben Tyner9ae5ca42020-02-28 13:13:50 -06004# gather analyzer sources to be used here and elsewhere if needed
Zane Shelley6e365872020-10-23 22:00:05 -05005analyzer_src = files(
6 'analyzer_main.cpp',
7 'hei_user_interface.cpp',
8 '../util/ffdc_file.cpp',
9 '../util/temporary_file.cpp',
10)
Ben Tyner9ae5ca42020-02-28 13:13:50 -060011
Ben Tyner0205f3b2020-02-24 10:24:47 -060012# Create hardware error analyzer library
13analyzer = static_library('analyzer',
Ben Tyner9ae5ca42020-02-28 13:13:50 -060014 analyzer_src,
Zane Shelley0c44c2f2020-06-05 17:14:31 -050015 include_directories : incdir,
Zane Shelley9fb73932020-09-15 13:34:57 -050016 dependencies : [ libhei_dep, sdbusplus ],
Ben Tyner13683082020-06-25 12:49:47 -050017 cpp_args : test_arg,
Ben Tynerb859d792020-05-06 21:29:47 -050018 install : false)