blob: 38edc51dc6522bd556e2d414df91caa66a2693ab [file] [log] [blame]
Brad Bishop0aa15902019-05-08 21:30:01 -04001project(
2 'phosphor-objmgr',
Patrick Williams2a1ef012025-03-03 11:09:20 -05003 'c',
4 'cpp',
Brad Bishop0aa15902019-05-08 21:30:01 -04005 default_options: [
Brad Bishopd6aa5522022-05-31 19:23:48 -04006 'buildtype=debugoptimized',
Patrick Williams26ed9802023-07-12 11:16:09 -05007 'cpp_std=c++23',
Brad Bishop0aa15902019-05-08 21:30:01 -04008 'warning_level=3',
9 'werror=true',
10 ],
11 license: 'Apache-2.0',
Patrick Williams26ed9802023-07-12 11:16:09 -050012 meson_version: '>=1.1.1',
Brad Bishop0aa15902019-05-08 21:30:01 -040013 version: '1.0',
14)
15
Brad Bishopebff1602025-07-15 13:38:34 -040016cxx = meson.get_compiler('cpp')
17
18if (cxx.get_id() == 'gcc')
19 if (cxx.version().version_compare('<13.0'))
20 error('This project requires gcc-13 or higher')
21 endif
22endif
23
Brad Bishop8f809dc2025-07-15 13:18:56 -040024# Enable debugging for debug builds
25if get_option('buildtype').startswith('debug')
26 add_project_arguments('-DMAPPER_ENABLE_DEBUG', language: 'cpp')
27endif
28
29# Boost configuration
30add_project_arguments(
31 ['-DBOOST_ASIO_DISABLE_THREADS', '-DBOOST_ASIO_NO_DEPRECATED'],
32 language: 'cpp',
33)
34
Brad Bishop1d706372025-07-09 16:39:15 -040035cli11 = dependency('CLI11', required: false, include_type: 'system')
36if not cli11.found()
37 cli11_proj = subproject('cli11', required: true)
38 cli11 = cli11_proj.get_variable('CLI11_dep')
39 cli11 = cli11.as_system('system')
Brad Bishop8c243622022-07-11 11:21:50 -040040endif
Brad Bishop1d706372025-07-09 16:39:15 -040041
Patrick Williamsf814e5b2022-03-21 11:14:17 -050042phosphor_logging = dependency('phosphor-logging')
Brad Bishop5962db52022-05-16 21:04:05 -040043phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces')
Patrick Williamsf814e5b2022-03-21 11:14:17 -050044sdbusplus = dependency('sdbusplus')
Patrick Williams2a1ef012025-03-03 11:09:20 -050045boost = dependency(
46 'boost',
Brad Bishope833e0b2025-07-15 09:51:44 -040047 version: '>=1.87.0',
Patrick Williams2a1ef012025-03-03 11:09:20 -050048 required: false,
49 include_type: 'system',
50)
Ed Tanous26ed4a12022-07-13 13:46:08 -070051if not boost.found()
Brad Bishope833e0b2025-07-15 09:51:44 -040052 cmake = import('cmake')
53 opt = cmake.subproject_options()
54 boost_libs = ['asio', 'callable_traits']
55 opt.add_cmake_defines({'BOOST_INCLUDE_LIBRARIES': ';'.join(boost_libs)})
56
57 boost_deps = []
58 boost_proj = cmake.subproject('boost', required: true, options: opt)
59 foreach boost_lib : boost_libs
60 boost_lib_instance = boost_proj.dependency('boost_' + boost_lib).as_system()
61 boost_deps += [boost_lib_instance]
62 endforeach
63 boost = declare_dependency(dependencies: boost_deps)
Ed Tanous26ed4a12022-07-13 13:46:08 -070064endif
Brad Bishopd6aa5522022-05-31 19:23:48 -040065
Patrick Williamsec874072023-11-29 06:45:19 -060066if get_option('tests').allowed()
Brad Bishopf3fe0db2025-07-09 16:33:11 -040067 gtest = dependency(
68 'gtest_main',
69 main: true,
70 version: '>=1.15.2',
71 required: true,
72 )
73 gmock = dependency('gmock', required: true)
Brad Bishop0aa15902019-05-08 21:30:01 -040074 subdir('src/test')
75 subdir('libmapper/test')
76endif
77
Brad Bishop0aa15902019-05-08 21:30:01 -040078install_headers('libmapper/mapper.h')
79
80libmapper = library(
81 'mapper',
82 'libmapper/mapper.c',
Patrick Williams2a1ef012025-03-03 11:09:20 -050083 dependencies: [dependency('libsystemd')],
Brad Bishop0aa15902019-05-08 21:30:01 -040084 gnu_symbol_visibility: 'hidden',
85 version: meson.project_version(),
Patrick Williams2a1ef012025-03-03 11:09:20 -050086 install: true,
87)
Brad Bishop0aa15902019-05-08 21:30:01 -040088
Patrick Williamsd4887752022-06-16 11:29:08 -050089mapper_dep = declare_dependency(
90 link_with: libmapper,
91 include_directories: include_directories('libmapper'),
Patrick Williams2a1ef012025-03-03 11:09:20 -050092 dependencies: [dependency('libsystemd')],
Patrick Williamsd4887752022-06-16 11:29:08 -050093)
94
Brad Bishop0aa15902019-05-08 21:30:01 -040095import('pkgconfig').generate(
96 name: 'libmapper',
97 description: 'OpenBMC service discovery utility library',
98 version: meson.project_version(),
Patrick Williams2a1ef012025-03-03 11:09:20 -050099 libraries: libmapper,
100)
Brad Bishop0aa15902019-05-08 21:30:01 -0400101
102executable(
103 'mapper',
104 'libmapper/app.c',
105 link_with: libmapper,
Patrick Williams2a1ef012025-03-03 11:09:20 -0500106 dependencies: [dependency('libsystemd')],
107 install: true,
108)
Brad Bishop0aa15902019-05-08 21:30:01 -0400109
Andrew Jefferyfb853662024-05-03 14:54:11 +0930110mapperx = executable(
Brad Bishop0aa15902019-05-08 21:30:01 -0400111 'mapperx',
112 [
113 'src/main.cpp',
Brad Bishop0aa15902019-05-08 21:30:01 -0400114 'src/processing.cpp',
115 'src/associations.cpp',
Willy Tuaba14d32023-01-31 14:19:59 -0800116 'src/handler.cpp',
Brad Bishop0aa15902019-05-08 21:30:01 -0400117 ],
118 dependencies: [
Ed Tanous26ed4a12022-07-13 13:46:08 -0700119 boost,
Brad Bishop0aa15902019-05-08 21:30:01 -0400120 dependency('libsystemd'),
Brad Bishop5962db52022-05-16 21:04:05 -0400121 phosphor_dbus_interfaces,
Brad Bishop0aa15902019-05-08 21:30:01 -0400122 sdbusplus,
Brad Bishop0aa15902019-05-08 21:30:01 -0400123 dependency('threads'),
Konstantin Aladyshev883d91d2024-04-03 12:38:37 +0300124 dependency('tinyxml2', default_options: ['tests=false']),
Brad Bishop0aa15902019-05-08 21:30:01 -0400125 ],
Brad Bishop13cf45f2025-07-14 16:35:13 -0400126 implicit_include_directories: false,
Brad Bishop2ec91572022-06-03 08:52:11 -0400127 install: true,
128 install_dir: join_paths(
Patrick Williams2a1ef012025-03-03 11:09:20 -0500129 get_option('prefix'),
130 get_option('libexecdir'),
131 meson.project_name(),
132 ),
Brad Bishop0aa15902019-05-08 21:30:01 -0400133)
Andrew Jefferyfb853662024-05-03 14:54:11 +0930134meson.override_find_program('mapperx', mapperx)
Brad Bishop0aa15902019-05-08 21:30:01 -0400135
Brad Bishop2ec91572022-06-03 08:52:11 -0400136systemd_system_unit_dir = dependency('systemd').get_variable(
Patrick Williamsfcae5262025-07-09 11:27:59 -0400137 'systemd_system_unit_dir',
Brad Bishop2ec91572022-06-03 08:52:11 -0400138)
139
140conf = configuration_data()
141conf.set('BINDIR', join_paths(get_option('prefix'), get_option('bindir')))
Patrick Williams2a1ef012025-03-03 11:09:20 -0500142conf.set(
143 'LIBEXECDIR',
144 join_paths(get_option('prefix'), get_option('libexecdir')),
145)
Brad Bishop2ec91572022-06-03 08:52:11 -0400146
147unit_files = [
148 'xyz.openbmc_project.ObjectMapper.service',
149 'mapper-subtree-remove@.service',
Patrick Williams2a1ef012025-03-03 11:09:20 -0500150 'mapper-wait@.service',
Brad Bishop2ec91572022-06-03 08:52:11 -0400151]
152
153foreach u : unit_files
154 configure_file(
155 configuration: conf,
Patrick Williams2a1ef012025-03-03 11:09:20 -0500156 input: join_paths('src/systemd', u) + '.in',
157 install: true,
Brad Bishop2ec91572022-06-03 08:52:11 -0400158 install_dir: systemd_system_unit_dir,
Patrick Williams2a1ef012025-03-03 11:09:20 -0500159 output: u,
Brad Bishop2ec91572022-06-03 08:52:11 -0400160 )
161endforeach
162
163dbus_system_bus_services_dir = dependency('dbus-1').get_variable(
Patrick Williams40302742023-04-12 08:01:37 -0500164 'system_bus_services_dir',
Patrick Williams2a1ef012025-03-03 11:09:20 -0500165 pkgconfig_define: ['prefix', get_option('prefix')],
Brad Bishop2ec91572022-06-03 08:52:11 -0400166)
167
168install_data(
169 'src/dbus/xyz.openbmc_project.ObjectMapper.service',
Patrick Williams2a1ef012025-03-03 11:09:20 -0500170 install_dir: dbus_system_bus_services_dir,
171)
Brad Bishop2ec91572022-06-03 08:52:11 -0400172
173install_data(
174 'src/dbus/xyz.openbmc_project.ObjectMapper.conf',
Patrick Williams2a1ef012025-03-03 11:09:20 -0500175 install_dir: get_option('datadir') / 'dbus-1' / 'system.d',
176)
Brad Bishop2ec91572022-06-03 08:52:11 -0400177
Brad Bishop42e5aee2023-02-03 13:57:33 -0500178if not get_option('unit-failure-monitor').disabled()
179 executable(
180 'phosphor-unit-failure-monitor',
Patrick Williams2a1ef012025-03-03 11:09:20 -0500181 ['fail-monitor/main.cpp', 'fail-monitor/monitor.cpp'],
Brad Bishop0426f312025-07-14 16:23:53 -0400182 dependencies: [cli11, phosphor_logging, sdbusplus],
Brad Bishop13cf45f2025-07-14 16:35:13 -0400183 implicit_include_directories: false,
Patrick Williams2a1ef012025-03-03 11:09:20 -0500184 install: true,
Brad Bishop42e5aee2023-02-03 13:57:33 -0500185 )
186endif