blob: 9ddfa458dbab3d319ecb5660ebd81df7f07c8435 [file] [log] [blame]
Zane Shelleyf480b732020-06-11 10:05:16 -05001# See README.md for details.
Zane Shelley248cbf82019-05-03 17:07:18 -05002project('openpower-hw-diags', 'cpp',
3 version: '0.1', meson_version: '>=0.49.0',
4 default_options: [
5 'warning_level=3',
6 'werror=true',
Ben Tyner92e39fd2020-02-05 18:11:02 -06007 'cpp_std=c++17',
8 'cpp_args=-Wno-unused-parameter'
Zane Shelley248cbf82019-05-03 17:07:18 -05009 ])
10
Zane Shelleyf480b732020-06-11 10:05:16 -050011# First, look if the libhei library has already been built and installed. If
12# not, default to the subproject.
13libhei_dep = dependency('hei', fallback : ['libhei', 'libhei_dep'])
Ben Tyner92e39fd2020-02-05 18:11:02 -060014
Zane Shelley61465db2020-10-30 14:53:11 -050015sdbusplus_dep = dependency('sdbusplus', version : '>=1.0')
16dbus_interfaces_dep = dependency('phosphor-dbus-interfaces')
17
Ben Tyner0205f3b2020-02-24 10:24:47 -060018incdir = include_directories('.')
19
Ben Tyner13683082020-06-25 12:49:47 -050020# See if phosphor-logging is available, if not use test case logging code. This
21# allows for local builds outside of CI test sandbox.
22h = 'phosphor-logging/log.hpp'
23cmplr = meson.get_compiler('cpp')
24if cmplr.compiles('#include <@0@>'.format(h), name : '#include <@0@>'.format(h))
25 test_arg = []
26 phosphor_logging = true
27else
28 test_arg = [
29 '-DTEST_TRACE',
30 ]
31 phosphor_logging = false
32endif
33
Ben Tyner0205f3b2020-02-24 10:24:47 -060034subdir('analyzer')
Ben Tyneref320152020-01-09 10:31:23 -060035subdir('attn')
Zane Shelley248cbf82019-05-03 17:07:18 -050036
Ben Tyner8c2f8b22020-03-27 10:39:31 -050037pthread = declare_dependency(link_args : '-pthread')
38lrt = declare_dependency(link_args : '-lrt')
39
Ben Tynerd3cda742020-05-04 08:00:28 -050040no_listener_mode = get_option('nlmode')
41
42if not no_listener_mode.disabled()
43 executable('openpower-hw-diags', 'main_nl.cpp', 'cli.cpp',
44 link_with : [analyzer, attn],
45 install : true)
46else
47 executable('openpower-hw-diags', 'main.cpp', 'cli.cpp', 'listener.cpp',
48 dependencies : [lrt, pthread],
49 link_with : [analyzer, attn],
Ben Tyner13683082020-06-25 12:49:47 -050050 cpp_args : test_arg,
Ben Tynerd3cda742020-05-04 08:00:28 -050051 install : true)
52endif
Ben Tyner0205f3b2020-02-24 10:24:47 -060053
Zane Shelley248cbf82019-05-03 17:07:18 -050054build_tests = get_option('tests')
55
56if not build_tests.disabled()
57 subdir('test')
58endif