blob: 6ee92ced8950b741005d779de2c1efd47780200a [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',
Zane Shelley29237752021-12-22 11:00:30 -06003 version: '0.1', meson_version: '>=0.57.0',
Zane Shelley248cbf82019-05-03 17:07:18 -05004 default_options: [
5 'warning_level=3',
6 'werror=true',
Zane Shelley29237752021-12-22 11:00:30 -06007 'cpp_std=c++20',
Zane Shelley248cbf82019-05-03 17:07:18 -05008 ])
9
Zane Shelleyd2854b72021-08-04 22:23:20 -050010# Package directory root, which will contain required data files.
11package_dir = join_paths( get_option('prefix'),
12 get_option('datadir'),
13 meson.project_name() )
14
15# Compiler option so that source knows the package directory.
16package_args = [ '-DPACKAGE_DIR="' + package_dir + '/"' ]
17
Zane Shelleyd9573f42020-12-02 15:52:06 -060018#-------------------------------------------------------------------------------
Ben Tynereea45422021-04-15 10:54:14 -050019# Versioning
20#-------------------------------------------------------------------------------
21buildinfo = vcs_tag(command: ['git', 'describe', '--always', '--long'],
22 input: 'buildinfo.hpp.in',
23 output: 'buildinfo.hpp',
24 replace_string:'@BUILDINFO@',
25 fallback: '0')
26
27#-------------------------------------------------------------------------------
Zane Shelleyd9573f42020-12-02 15:52:06 -060028# Compiler
29#-------------------------------------------------------------------------------
30
Zane Shelleyf80482a2020-12-02 15:13:13 -060031cmplr = meson.get_compiler('cpp')
32
Zane Shelleyd9573f42020-12-02 15:52:06 -060033#-------------------------------------------------------------------------------
Zane Shelley3a851082021-03-23 16:45:28 -050034# Config file
35#-------------------------------------------------------------------------------
36
37conf = configuration_data()
38
39conf.set('CONFIG_PHAL_API', get_option('phal').enabled())
40
41configure_file(input: 'config.h.in', output: 'config.h', configuration: conf)
42
43#-------------------------------------------------------------------------------
Zane Shelleyd9573f42020-12-02 15:52:06 -060044# Include directories
45#-------------------------------------------------------------------------------
46
47# Only using the base directory. All header includes should provide the full
48# path from the base directory.
49incdir = include_directories('.')
50
51#-------------------------------------------------------------------------------
52# External library dependencies
53#-------------------------------------------------------------------------------
54
55# Look if the libhei library has already been built and installed. If not,
56# default to the subproject.
Zane Shelleyf480b732020-06-11 10:05:16 -050057libhei_dep = dependency('hei', fallback : ['libhei', 'libhei_dep'])
Ben Tyner92e39fd2020-02-05 18:11:02 -060058
Zane Shelley61465db2020-10-30 14:53:11 -050059sdbusplus_dep = dependency('sdbusplus', version : '>=1.0')
60dbus_interfaces_dep = dependency('phosphor-dbus-interfaces')
61
Zane Shelleyf80482a2020-12-02 15:13:13 -060062libpdbg_dep = cmplr.find_library('pdbg')
63
Zane Shelley55e7fec2022-01-28 15:29:44 -060064fmt_dep = dependency('fmt')
65
Ben Tynerb9715172021-09-29 08:46:19 -050066if get_option('phal').enabled()
67 libphal_dep = cmplr.find_library('phal')
68endif
69
Ben Tyner13683082020-06-25 12:49:47 -050070# See if phosphor-logging is available, if not use test case logging code. This
71# allows for local builds outside of CI test sandbox.
72h = 'phosphor-logging/log.hpp'
Ben Tyner13683082020-06-25 12:49:47 -050073if cmplr.compiles('#include <@0@>'.format(h), name : '#include <@0@>'.format(h))
74 test_arg = []
75 phosphor_logging = true
76else
77 test_arg = [
78 '-DTEST_TRACE',
79 ]
80 phosphor_logging = false
81endif
82
Zane Shelleyc2528942020-12-02 15:42:42 -060083pthread = declare_dependency(link_args : '-pthread')
84lrt = declare_dependency(link_args : '-lrt')
85
Zane Shelley5191bae2021-08-04 22:48:28 -050086# JSON parser
87if cmplr.has_header('nlohmann/json.hpp')
88 nlohmann_json_dep = declare_dependency()
89else
90 subproject('nlohmann', required: false)
91 nlohmann_json_dep = declare_dependency(
92 include_directories: [
93 'subprojects/nlohmann/single_include',
94 'subprojects/nlohmann/single_include/nlohmann',
95 ]
96 )
97 nlohmann_json_dep = nlohmann_json_dep.as_system('system')
98endif
99
100# JSON validator
101if cmplr.has_header('valijson/validator.hpp')
102 valijson_dep = declare_dependency()
103else
104 subproject('valijson', required: false)
105 valijson_dep = declare_dependency(
106 include_directories: 'subprojects/valijson/include'
107 )
108 valijson_dep = valijson_dep.as_system('system')
109endif
110
Zane Shelleyc2528942020-12-02 15:42:42 -0600111#-------------------------------------------------------------------------------
Zane Shelleyd9573f42020-12-02 15:52:06 -0600112# Build the local static libraries
Zane Shelleyc2528942020-12-02 15:42:42 -0600113#-------------------------------------------------------------------------------
114
Ben Tyner0205f3b2020-02-24 10:24:47 -0600115subdir('analyzer')
Ben Tyneref320152020-01-09 10:31:23 -0600116subdir('attn')
Zane Shelleyf80482a2020-12-02 15:13:13 -0600117subdir('util')
Zane Shelley248cbf82019-05-03 17:07:18 -0500118
Zane Shelleyc2528942020-12-02 15:42:42 -0600119hwdiags_libs = [
120 analyzer_lib,
121 attn_lib,
122 util_lib,
123]
124
125#-------------------------------------------------------------------------------
126# Build the executable
127#-------------------------------------------------------------------------------
Ben Tyner8c2f8b22020-03-27 10:39:31 -0500128
Ben Tynerd3cda742020-05-04 08:00:28 -0500129no_listener_mode = get_option('nlmode')
130
131if not no_listener_mode.disabled()
Ben Tyner832526d2021-05-05 13:34:28 -0500132 executable('openpower-hw-diags',
Zane Shelley475237a2022-02-03 11:04:54 -0600133 sources : [ 'main_nl.cpp', 'cli.cpp', buildinfo, plugins_src ],
134 dependencies : [ libhei_dep ],
Zane Shelleyc2528942020-12-02 15:42:42 -0600135 link_with : hwdiags_libs,
Ben Tynerd3cda742020-05-04 08:00:28 -0500136 install : true)
137else
Ben Tyner832526d2021-05-05 13:34:28 -0500138 executable('openpower-hw-diags',
Zane Shelley475237a2022-02-03 11:04:54 -0600139 sources : [ 'main.cpp', 'cli.cpp', 'listener.cpp', buildinfo,
140 plugins_src ],
141 dependencies : [lrt, pthread, libhei_dep],
Zane Shelleyc2528942020-12-02 15:42:42 -0600142 link_with : hwdiags_libs,
Ben Tyner13683082020-06-25 12:49:47 -0500143 cpp_args : test_arg,
Ben Tynerd3cda742020-05-04 08:00:28 -0500144 install : true)
145endif
Ben Tyner0205f3b2020-02-24 10:24:47 -0600146
Zane Shelleyc2528942020-12-02 15:42:42 -0600147#-------------------------------------------------------------------------------
148# Test, if configured
149#-------------------------------------------------------------------------------
150
Zane Shelley248cbf82019-05-03 17:07:18 -0500151build_tests = get_option('tests')
152
153if not build_tests.disabled()
154 subdir('test')
155endif