blob: fdef145c284773a71d2bf757e7ff90346bab9bd6 [file] [log] [blame]
Deepak Kodihalli3c275e12019-09-21 06:39:39 -05001project('pldm', ['c', 'cpp'],
Deepak Kodihallib0d15f12021-04-16 12:18:10 +05302 version: '0.1', meson_version: '>=0.57.0',
Deepak Kodihalli3c275e12019-09-21 06:39:39 -05003 default_options: [
4 'warning_level=3',
5 'default_library=shared',
6 'werror=true',
Deepak Kodihallib0d15f12021-04-16 12:18:10 +05307 'cpp_std=c++20',
Manojkiran Eda38ce97c2021-02-14 12:15:17 +05308 'buildtype=debugoptimized'
Deepak Kodihalli3c275e12019-09-21 06:39:39 -05009 ])
10
11# Wno-psabi reduces the number of "Note:" messages when cross-compiling some STL
12# stuff for ARM. See https://stackoverflow.com/questions/48149323/strange-gcc-warning-when-compiling-qt-project
13# Basically, gcc 6 and gcc 7 are not ABI compatible, but since the whole OpenBMC
14# project uses the same compiler, we can safely ignmore these info notes.
15add_project_arguments('-Wno-psabi', language: 'cpp')
16
Manojkiran Eda38ce97c2021-02-14 12:15:17 +053017
18# Disable FORTIFY_SOURCE when compiling with no optimization
19if(get_option('optimization') == '0')
20 add_project_arguments('-U_FORTIFY_SOURCE',language:['cpp','c'])
21 message('Disabling FORTIFY_SOURCE as optimization is set to 0')
22endif
23
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050024conf_data = configuration_data()
Deepak Kodihalli7523d5c2019-11-08 02:22:29 -060025conf_data.set_quoted('BIOS_JSONS_DIR', '/usr/share/pldm/bios')
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050026conf_data.set_quoted('BIOS_TABLES_DIR', '/var/lib/pldm/bios')
Deepak Kodihalli7523d5c2019-11-08 02:22:29 -060027conf_data.set_quoted('PDR_JSONS_DIR', '/usr/share/pldm/pdr')
Deepak Kodihallie60c5822019-10-23 03:26:15 -050028conf_data.set_quoted('FRU_JSONS_DIR', '/usr/share/pldm/fru')
Deepak Kodihalli87514cc2020-04-16 09:08:38 -050029conf_data.set_quoted('HOST_JSONS_DIR', '/usr/share/pldm/host')
TOM JOSEPHd4d97a52020-03-23 14:36:34 +053030conf_data.set_quoted('EVENTS_JSONS_DIR', '/usr/share/pldm/events')
Manojkiran Edaff80ebf2021-03-05 06:46:55 +053031conf_data.set('PLDM_VERBOSITY',get_option('verbosity'))
George Liuab865f62020-03-10 09:12:52 +080032if get_option('softoff').enabled()
33 conf_data.set('SOFTOFF_TIMEOUT_SECONDS', get_option('softoff-timeout-seconds'))
34endif
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050035if get_option('oem-ibm').enabled()
Deepak Kodihalli7523d5c2019-11-08 02:22:29 -060036 conf_data.set_quoted('FILE_TABLE_JSON', '/usr/share/pldm/fileTable.json')
Adriana Kobylak76f820c2020-07-16 11:02:03 -050037 conf_data.set_quoted('LID_RUNNING_DIR', '/var/lib/phosphor-software-manager/hostfw/running')
38 conf_data.set_quoted('LID_ALTERNATE_DIR', '/var/lib/phosphor-software-manager/hostfw/alternate')
Adriana Kobylakfa810d72020-10-16 16:27:28 -050039 conf_data.set_quoted('LID_STAGING_DIR', '/var/lib/phosphor-software-manager/hostfw/staging')
Deepak Kodihalli09b017b2020-08-26 07:37:32 -050040 conf_data.set_quoted('LID_RUNNING_PATCH_DIR', '/usr/local/share/hostfw/running')
41 conf_data.set_quoted('LID_ALTERNATE_PATCH_DIR', '/usr/local/share/hostfw/alternate')
Sampa Misra69508502020-09-08 00:08:21 -050042 conf_data.set_quoted('LID_STAGING_DIR', '/var/lib/phosphor-software-manager/hostfw/staging')
Deepak Kodihalli4c164b02020-03-07 03:23:31 -060043 conf_data.set('DMA_MAXSIZE', get_option('oem-ibm-dma-maxsize'))
Patrick Williamsb62c4302021-04-17 07:13:59 -050044 add_project_arguments('-DOEM_IBM', language : 'c')
45 add_project_arguments('-DOEM_IBM', language : 'cpp')
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050046endif
47configure_file(output: 'config.h',
48 configuration: conf_data
49)
50
Patrick Williams3b1dc012021-04-16 21:51:47 -050051phosphor_dbus_interfaces = dependency(
52 'phosphor-dbus-interfaces',
53 fallback: ['phosphor-dbus-interfaces', 'phosphor_dbus_interfaces_dep'],
54)
55sdbusplus = dependency(
56 'sdbusplus',
57 fallback: ['sdbusplus', 'sdbusplus_dep'],
58)
59sdeventplus = dependency(
60 'sdeventplus',
61 fallback: ['sdeventplus', 'sdeventplus_dep'],
62)
Manojkiran Eda001f7882021-01-04 18:21:18 +053063systemd = dependency('systemd')
64
Patrick Williams3b1dc012021-04-16 21:51:47 -050065cpp = meson.get_compiler('cpp')
66
67if cpp.has_header('nlohmann/json.hpp')
68 nlohmann_json = declare_dependency()
69else
70 subproject('nlohmann-json')
71 nlohmann_json = declare_dependency(
72 include_directories: [
73 'subprojects/nlohmann-json/single_include',
74 'subprojects/nlohmann-json/single_include/nlohmann',
75 ]
76 )
77endif
78
79if cpp.has_header('CLI/CLI.hpp')
80 CLI11_dep = declare_dependency()
81else
82 CLI11_dep = dependency(
83 'CLI11',
84 fallback: [ 'CLI11', 'CLI11_dep' ],
85 )
86endif
87
88
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050089subdir('libpldm')
George Liuab437e52020-01-19 17:12:19 +080090
Lei YU31fc47e2020-02-27 11:41:45 +080091if get_option('libpldm-only').disabled()
92
George Liuab437e52020-01-19 17:12:19 +080093libpldmutils_headers = ['.']
94libpldmutils = library(
95 'pldmutils',
Deepak Kodihallid130e1a2020-06-17 05:55:32 -050096 'common/utils.cpp',
George Liuab437e52020-01-19 17:12:19 +080097 version: meson.project_version(),
98 dependencies: [
Patrick Williams6f4479c2021-04-16 21:39:44 -050099 libpldm_dep,
Manojkiran Eda001f7882021-01-04 18:21:18 +0530100 phosphor_dbus_interfaces,
Patrick Williams3b1dc012021-04-16 21:51:47 -0500101 nlohmann_json,
Manojkiran Eda001f7882021-01-04 18:21:18 +0530102 sdbusplus,
George Liuab437e52020-01-19 17:12:19 +0800103 ],
104 install: true,
105 include_directories: include_directories(libpldmutils_headers),
106)
107
108libpldmutils = declare_dependency(
109 include_directories: include_directories(libpldmutils_headers),
110 link_with: libpldmutils)
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500111subdir('libpldmresponder')
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500112
113deps = [
Patrick Williams6f4479c2021-04-16 21:39:44 -0500114 libpldm_dep,
Tom Joseph250c4752020-04-15 10:32:45 +0530115 libpldmutils,
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500116 libpldmresponder,
Pavithra Barithaya51efaf82020-04-02 02:42:27 -0500117 libpldmutils,
Patrick Williams3b1dc012021-04-16 21:51:47 -0500118 nlohmann_json,
Manojkiran Eda001f7882021-01-04 18:21:18 +0530119 sdbusplus,
120 sdeventplus,
121 phosphor_dbus_interfaces
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500122]
123
124executable(
125 'pldmd',
Deepak Kodihalli1521f6d2020-06-16 08:51:02 -0500126 'pldmd/pldmd.cpp',
127 'pldmd/dbus_impl_requester.cpp',
128 'pldmd/instance_id.cpp',
129 'pldmd/dbus_impl_pdr.cpp',
Deepak Kodihalliac19bd62020-06-16 08:25:23 -0500130 'host-bmc/dbus_to_host_effecters.cpp',
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500131 implicit_include_directories: false,
132 dependencies: deps,
133 install: true,
134 install_dir: get_option('bindir'))
135
Manojkiran Edaa1d27602021-04-17 11:42:28 +0530136systemd_system_unit_dir = systemd.get_variable(
137 pkgconfig: 'systemdsystemunitdir',
138 pkgconfig_define: ['prefix', get_option('prefix')])
Manojkiran Edafec5d592021-01-21 12:27:34 +0530139
Deepak Kodihalli6935cf62020-06-15 23:38:27 -0500140configure_file(
141 copy: true,
Manojkiran Edafec5d592021-01-21 12:27:34 +0530142 input: 'pldmd/service_files/pldmd.service',
Deepak Kodihalli6935cf62020-06-15 23:38:27 -0500143 install: true,
144 install_dir: systemd_system_unit_dir,
145 output: 'pldmd.service',
146)
147
Manojkiran Edaff80ebf2021-03-05 06:46:55 +0530148configure_file(
149 input: 'pldmd/verbosity/verbosity',
150 output: 'pldm_verbosity',
151 configuration: conf_data,
152 install: true,
153 install_dir: '/etc/default')
154
Manojkiran Edafec5d592021-01-21 12:27:34 +0530155if get_option('oem-ibm').enabled()
156 subdir('oem/ibm/service_files')
157endif
158
Deepak Kodihallif7f5da92020-06-17 05:56:10 -0500159subdir('pldmtool')
George Liuab437e52020-01-19 17:12:19 +0800160
Deepak Kodihalli6e51e372020-06-19 03:49:07 -0500161subdir('configurations')
162
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500163if get_option('tests').enabled()
164 subdir('test')
165endif
Deepak Kodihalli9d494bb2019-11-05 01:28:43 -0600166
167if get_option('utilities').enabled()
168 subdir('utilities')
169endif
Lei YU31fc47e2020-02-27 11:41:45 +0800170
George Liu4c1a3fd2020-03-10 08:25:21 +0800171if get_option('softoff').enabled()
172 subdir('softoff')
173endif
174
Lei YU31fc47e2020-02-27 11:41:45 +0800175endif # pldm-only