blob: 1e4516b6e678cd982fcb2cad9f2aa42d7147862d [file] [log] [blame]
George Liua31da972022-04-14 14:07:18 +08001project(
2 'phosphor-inventory-manager', 'cpp',
3 version : '1.0.0',
Patrick Williamsc3eb3872023-07-12 11:15:18 -05004 meson_version: '>=1.1.1',
George Liua31da972022-04-14 14:07:18 +08005 default_options: [
6 'warning_level=3',
7 'werror=true',
Patrick Williamsc3eb3872023-07-12 11:15:18 -05008 'cpp_std=c++23',
George Liua31da972022-04-14 14:07:18 +08009 'buildtype=debugoptimized',
10 ]
11)
12
13conf_data = configuration_data()
14conf_data.set_quoted('BUSNAME', 'xyz.openbmc_project.Inventory.Manager')
15conf_data.set_quoted('INVENTORY_ROOT', '/xyz/openbmc_project/inventory')
16conf_data.set_quoted('IFACE', 'xyz.openbmc_project.Inventory.Manager')
17conf_data.set_quoted('PIM_PERSIST_PATH', '/var/lib/phosphor-inventory-manager')
18conf_data.set_quoted('ASSOCIATIONS_FILE_PATH', '/usr/share/phosphor-inventory-manager/associations.json')
19conf_data.set('CLASS_VERSION', 2)
Patrick Williamsba493592023-11-29 06:44:07 -060020conf_data.set('CREATE_ASSOCIATIONS', get_option('associations').allowed())
George Liua31da972022-04-14 14:07:18 +080021configure_file(output: 'config.h',
22 configuration: conf_data
23)
24
25cpp = meson.get_compiler('cpp')
26# Get Cereal dependency.
27cereal_dep = dependency('cereal', required: false)
28has_cereal = cpp.has_header_symbol(
29 'cereal/cereal.hpp',
30 'cereal::specialize',
31 dependencies: cereal_dep,
32 required: false)
33if not has_cereal
34 cereal_opts = import('cmake').subproject_options()
Konstantin Aladyshev31424482024-04-02 18:09:57 +030035 cereal_opts.add_cmake_defines({'BUILD_TESTS': 'OFF', 'SKIP_PERFORMANCE_COMPARISON': 'ON'})
George Liua31da972022-04-14 14:07:18 +080036 cereal_proj = import('cmake').subproject(
37 'cereal',
38 options: cereal_opts,
39 required: false)
40 assert(cereal_proj.found(), 'cereal is required')
41 cereal_dep = cereal_proj.dependency('cereal')
42endif
43
44sdbusplus_dep = dependency('sdbusplus')
45phosphor_dbus_interfaces_dep = dependency('phosphor-dbus-interfaces')
46phosphor_logging_dep = dependency('phosphor-logging')
47
48prog_python = find_program('python3', required: true)
49
50sources = []
51deps = []
Patrick Williamsba493592023-11-29 06:44:07 -060052if get_option('associations').allowed()
George Liua31da972022-04-14 14:07:18 +080053 sources += [
54 'association_manager.cpp',
55 ]
56 deps += [
Patrick Williams3adc8452023-12-07 17:14:11 -060057 dependency('nlohmann_json', include_type: 'system'),
George Liua31da972022-04-14 14:07:18 +080058 ]
59endif
60
61ifacesdir = get_option('IFACES_PATH')
62if ifacesdir == ''
Patrick Williams8a1ccdc2023-04-12 08:01:04 -050063 ifacesdir = phosphor_dbus_interfaces_dep.get_variable('yamldir')
George Liua31da972022-04-14 14:07:18 +080064endif
65
66generated_cpp = custom_target(
67 'generated.cpp',
68 command : [
69 prog_python,
70 meson.project_source_root() + '/pimgen.py',
71 '-i', ifacesdir,
72 '-d', get_option('YAML_PATH'),
73 '-o', meson.current_build_dir(),
Santosh Puranikc4c94822023-01-05 22:43:46 +053074 '-b', conf_data.get_unquoted('BUSNAME'),
George Liua31da972022-04-14 14:07:18 +080075 'generate-cpp'
76 ],
77 output : 'generated.cpp')
78
79gen_serialization_hpp = custom_target(
80 'gen_serialization.hpp',
81 command : [
82 prog_python,
83 meson.project_source_root() + '/pimgen.py',
84 '-i', ifacesdir,
85 '-d', get_option('YAML_PATH'),
86 '-o', meson.current_build_dir(),
Santosh Puranikc4c94822023-01-05 22:43:46 +053087 '-b', conf_data.get_unquoted('BUSNAME'),
George Liua31da972022-04-14 14:07:18 +080088 'generate-serialization'
89 ],
90 output : 'gen_serialization.hpp')
91
92sources += [
93 generated_cpp,
94 gen_serialization_hpp,
95 'app.cpp',
96 'errors.cpp',
97 'functor.cpp',
98 'manager.cpp',
99]
100
101deps += [
102 cereal_dep,
103 phosphor_dbus_interfaces_dep,
104 phosphor_logging_dep,
105 sdbusplus_dep,
106]
107
108executable(
109 'phosphor-inventory',
110 sources,
111 implicit_include_directories: true,
112 dependencies: deps,
113 install: true,
114 install_dir: get_option('bindir'),
115)
George Liu07f94f02022-04-14 14:09:44 +0800116
117build_tests = get_option('tests')
118if not build_tests.disabled()
119 subdir('test')
120endif