xref: /openbmc/entity-manager/meson.build (revision 309c0b13)
1project(
2    'entity-manager',
3    'cpp',
4    default_options: [
5        'warning_level=3',
6        'werror=true',
7        'cpp_std=c++20'
8    ],
9    license: 'Apache-2.0',
10    version: '0.1',
11    meson_version: '>=0.57.0',
12)
13add_project_arguments('-Wno-psabi', language: 'cpp')
14
15boost_args = [
16    '-DBOOST_SYSTEM_NO_DEPRECATED',
17    '-DBOOST_ERROR_CODE_HEADER_ONLY',
18    '-DBOOST_NO_RTTI',
19    '-DBOOST_NO_TYPEID',
20    '-DBOOST_ALL_NO_LIB',
21    '-DBOOST_ALLOW_DEPRECATED_HEADERS'
22]
23build_tests = get_option('tests')
24cpp = meson.get_compiler('cpp')
25boost = dependency('boost', required: false)
26if not boost.found()
27     subproject('boost', required: false)
28     boost = declare_dependency(
29         include_directories: 'subprojects/boost_1_71_0',
30     )
31     boost = boost.as_system('system')
32endif
33if get_option('fru-device')
34    i2c = cpp.find_library('i2c')
35endif
36
37nlohmann_json_dep = dependency('nlohmann_json',
38                               fallback: [ 'nlohmann_json', 'nlohmann_json_dep'])
39
40sdbusplus = dependency('sdbusplus', required: false)
41if not sdbusplus.found()
42    sdbusplus_proj = subproject('sdbusplus', required: true)
43    sdbusplus = sdbusplus_proj.get_variable('sdbusplus_dep')
44    sdbusplus = sdbusplus.as_system('system')
45endif
46systemd = dependency('systemd')
47systemd_system_unit_dir = systemd.get_pkgconfig_variable(
48    'systemdsystemunitdir',
49    define_variable: ['prefix', get_option('prefix')])
50packagedir = join_paths(
51    get_option('prefix'),
52    get_option('datadir'),
53    meson.project_name(),
54)
55sysconfdir = join_paths(
56    get_option('prefix'),
57    get_option('sysconfdir'),
58    meson.project_name(),
59)
60threads = dependency('threads')
61if cpp.has_header('valijson/validator.hpp')
62    valijson = declare_dependency()
63else
64    subproject('valijson', required: false)
65    valijson = declare_dependency(
66        include_directories: 'subprojects/valijson/include'
67    )
68    valijson = valijson.as_system('system')
69endif
70
71install_data('blacklist.json')
72
73configs = [
74    '1ux16_riser.json',
75    '2ux8_riser.json',
76    '8x25_hsbp.json',
77    'a2ul16riser.json',
78    'a2ux8x4riser.json',
79    'acbell_rica_psu.json',
80    'asrock_e3c246d4i.json',
81    'asrock_romed8hm3.json',
82    'bletchley_baseboard.json',
83    'bletchley_chassis.json',
84    'blyth.json',
85    'ahw1um2riser.json',
86    'aspower_u1a-d10550_psu.json',
87    'aspower_u1a-d10800_psu.json',
88    'aspower_u1a-d11200_psu.json',
89    'aspower_u1a-d11600_psu.json',
90    'aspower_u1d-d10800_psu.json',
91    'axx1p100hssi_aic.json',
92    'axx2prthdhd.json',
93    'bnp_baseboard.json',
94    'bellavista.json',
95    'delta_awf2dc3200w_psu.json',
96    'delta_dps-750xb_psu.json',
97    'delta_dps-1600ab_psu.json',
98    'delta_dps-2000ab_psu.json',
99    'everest.json',
100    'f1u12x25_hsbp.json',
101    'f1u4x25_hsbp.json',
102    'f2u12x35_hsbp.json',
103    'f2u8x25_hsbp.json',
104    'fbtp.json',
105    'fbyv2.json',
106    'flextronics_s-1100adu00-201_psu.json',
107    'ibm_1000w_cffps.json',
108    'ibm_1400w_cffps.json',
109    'ibm_1600w_cffps.json',
110    'ibm_2000w_cffps.json',
111    'ibm_2300w_cffps.json',
112    'intel_front_panel.json',
113    'kudo_bmc.json',
114    'kudo_motherboard.json',
115    'mt_jade.json',
116    'nisqually.json',
117    'nvme_p4000.json',
118    'pcie_ssd_retimer.json',
119    'pssf132202a.json',
120    'pssf162205a.json',
121    'pssf212201a.json',
122    'pssf222201a.json',
123    'rainier_2u_chassis.json',
124    'rainier_4u_chassis.json',
125    'rainier_1s4u_chassis.json',
126    'r1000_chassis.json',
127    'r2000_chassis.json',
128    'sas_module.json',
129    'solum_pssf162202_psu.json',
130    'storm_king.json',
131    'stp_baseboard.json',
132    'stp_p4000_chassis.json',
133    'tyan_s7106_baseboard.json',
134    'tyan_s8036_baseboard.json',
135    'vegman_n110_baseboard.json',
136    'vegman_rx20_baseboard.json',
137    'vegman_sx20_baseboard.json',
138    'wft_baseboard.json',
139]
140filepaths = []
141foreach c : configs
142    file = join_paths('configurations', c)
143    install_data(
144        file,
145        install_dir: join_paths(
146            packagedir,
147            'configurations',
148        )
149    )
150    filepaths += [file]
151endforeach
152
153validate_script = files('scripts/validate_configs.py')
154autojson = custom_target(
155  'check_syntax',
156  command: [
157    validate_script,
158    '-v',
159    '-k',
160  ],
161  depend_files: files(filepaths),
162  build_by_default: true,
163  capture: true,
164  output: 'validate_configs.log',
165)
166
167schemas = [
168    'global.json',
169    'legacy.json',
170    'openbmc-dbus.json',
171    'ibm.json',
172    'intel.json',
173    'pid.json',
174    'pid_zone.json',
175    'stepwise.json',
176    'virtual_sensor.json',
177]
178
179foreach s : schemas
180    install_data(
181        join_paths('schemas', s),
182        install_dir: join_paths(
183            packagedir,
184            'configurations',
185            'schemas',
186        )
187    )
188endforeach
189
190subdir('service_files')
191subdir('src')
192
193if not build_tests.disabled()
194    test_boost_args = boost_args + ['-DBOOST_ASIO_DISABLE_THREADS']
195    gtest = dependency('gtest', main: true, disabler: true, required: false)
196    if not gtest.found() and build_tests.enabled()
197        cmake = import('cmake')
198        gtest_subproject = cmake.subproject('gtest')
199        cm_gtest = gtest_subproject.dependency('gtest')
200        cm_gtest_main = gtest_subproject.dependency('gtest_main')
201        gtest = declare_dependency(dependencies: [cm_gtest, cm_gtest_main, threads])
202    endif
203
204    test(
205        'test_entity_manager',
206        executable(
207            'test_entity_manager',
208            'test/test_entity-manager.cpp',
209            'src/expression.cpp',
210            'src/utils.cpp',
211            cpp_args: test_boost_args,
212            dependencies: [
213                boost,
214                gtest,
215                nlohmann_json_dep,
216                sdbusplus,
217                valijson,
218            ],
219            implicit_include_directories: false,
220            include_directories: 'include',
221        )
222    )
223
224    test(
225        'test_fru_utils',
226        executable(
227            'test_fru_utils',
228            'test/test_fru-utils.cpp',
229            'src/fru_utils.cpp',
230            'src/fru_reader.cpp',
231            cpp_args: test_boost_args,
232            dependencies: [
233                boost,
234                gtest,
235            ],
236            implicit_include_directories: false,
237            include_directories: 'include',
238        )
239    )
240endif
241