blob: 407f66fcf7f824a6ce4625c7da3256c23de8c036 [file] [log] [blame]
Ben Tyner92e39fd2020-02-05 18:11:02 -06001# If libhei is not provided by the system then build using the subproject
2libhei_dep = dependency('libhei', fallback : ['libhei', 'libhei_dep'])
3
4# create openpower-hw-diags application
5executable('openpower-hw-diags',
6 'main.cpp',
7 'user_interface.cpp',
8 dependencies : libhei_dep,
9 install : true)