blob: 87b6fccf30ad308c4ccbfc38eac8aa04f6cde9a6 [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
Ben Tynerb859d792020-05-06 21:29:47 -05005analyzer_src = files('analyzer_main.cpp',
6 'hei_user_interface.cpp')
Ben Tyner9ae5ca42020-02-28 13:13:50 -06007
Ben Tyner0205f3b2020-02-24 10:24:47 -06008# Create hardware error analyzer library
9analyzer = static_library('analyzer',
Ben Tyner9ae5ca42020-02-28 13:13:50 -060010 analyzer_src,
Zane Shelley0c44c2f2020-06-05 17:14:31 -050011 include_directories : incdir,
Zane Shelley9fb73932020-09-15 13:34:57 -050012 dependencies : [ libhei_dep, sdbusplus ],
Ben Tyner13683082020-06-25 12:49:47 -050013 cpp_args : test_arg,
Ben Tynerb859d792020-05-06 21:29:47 -050014 install : false)