blob: aee4c5e6ce230623cdbba1f9a56e2287e6d2c78a [file] [log] [blame]
Deepak Kodihalli3c275e12019-09-21 06:39:39 -05001project('pldm', ['c', 'cpp'],
Deepak Kodihallic3ed7862020-06-19 02:33:29 -05002 version: '0.1', meson_version: '>=0.53.2',
Deepak Kodihalli3c275e12019-09-21 06:39:39 -05003 default_options: [
4 'warning_level=3',
5 'default_library=shared',
6 'werror=true',
Manojkiran Eda38ce97c2021-02-14 12:15:17 +05307 'cpp_std=c++17',
8 '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')
George Liuab865f62020-03-10 09:12:52 +080031if get_option('softoff').enabled()
32 conf_data.set('SOFTOFF_TIMEOUT_SECONDS', get_option('softoff-timeout-seconds'))
33endif
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050034if get_option('oem-ibm').enabled()
Deepak Kodihalli7523d5c2019-11-08 02:22:29 -060035 conf_data.set_quoted('FILE_TABLE_JSON', '/usr/share/pldm/fileTable.json')
Adriana Kobylak76f820c2020-07-16 11:02:03 -050036 conf_data.set_quoted('LID_RUNNING_DIR', '/var/lib/phosphor-software-manager/hostfw/running')
37 conf_data.set_quoted('LID_ALTERNATE_DIR', '/var/lib/phosphor-software-manager/hostfw/alternate')
Adriana Kobylakfa810d72020-10-16 16:27:28 -050038 conf_data.set_quoted('LID_STAGING_DIR', '/var/lib/phosphor-software-manager/hostfw/staging')
Deepak Kodihalli09b017b2020-08-26 07:37:32 -050039 conf_data.set_quoted('LID_RUNNING_PATCH_DIR', '/usr/local/share/hostfw/running')
40 conf_data.set_quoted('LID_ALTERNATE_PATCH_DIR', '/usr/local/share/hostfw/alternate')
Sampa Misra69508502020-09-08 00:08:21 -050041 conf_data.set_quoted('LID_STAGING_DIR', '/var/lib/phosphor-software-manager/hostfw/staging')
Deepak Kodihalli4c164b02020-03-07 03:23:31 -060042 conf_data.set('DMA_MAXSIZE', get_option('oem-ibm-dma-maxsize'))
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050043 add_global_arguments('-DOEM_IBM', language : 'c')
44 add_global_arguments('-DOEM_IBM', language : 'cpp')
45endif
46configure_file(output: 'config.h',
47 configuration: conf_data
48)
49
Manojkiran Eda001f7882021-01-04 18:21:18 +053050phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces')
51sdbusplus = dependency('sdbusplus')
52sdeventplus = dependency('sdeventplus')
53systemd = dependency('systemd')
54
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050055subdir('libpldm')
George Liuab437e52020-01-19 17:12:19 +080056
Lei YU31fc47e2020-02-27 11:41:45 +080057if get_option('libpldm-only').disabled()
58
George Liuab437e52020-01-19 17:12:19 +080059libpldmutils_headers = ['.']
60libpldmutils = library(
61 'pldmutils',
Deepak Kodihallid130e1a2020-06-17 05:55:32 -050062 'common/utils.cpp',
George Liuab437e52020-01-19 17:12:19 +080063 version: meson.project_version(),
64 dependencies: [
65 libpldm,
Manojkiran Eda001f7882021-01-04 18:21:18 +053066 phosphor_dbus_interfaces,
67 sdbusplus,
George Liuab437e52020-01-19 17:12:19 +080068 ],
69 install: true,
70 include_directories: include_directories(libpldmutils_headers),
71)
72
73libpldmutils = declare_dependency(
74 include_directories: include_directories(libpldmutils_headers),
75 link_with: libpldmutils)
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050076subdir('libpldmresponder')
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050077
78deps = [
79 libpldm,
Tom Joseph250c4752020-04-15 10:32:45 +053080 libpldmutils,
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050081 libpldmresponder,
Pavithra Barithaya51efaf82020-04-02 02:42:27 -050082 libpldmutils,
Manojkiran Eda001f7882021-01-04 18:21:18 +053083 sdbusplus,
84 sdeventplus,
85 phosphor_dbus_interfaces
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050086]
87
88executable(
89 'pldmd',
Deepak Kodihalli1521f6d2020-06-16 08:51:02 -050090 'pldmd/pldmd.cpp',
91 'pldmd/dbus_impl_requester.cpp',
92 'pldmd/instance_id.cpp',
93 'pldmd/dbus_impl_pdr.cpp',
Deepak Kodihalliac19bd62020-06-16 08:25:23 -050094 'host-bmc/dbus_to_host_effecters.cpp',
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050095 implicit_include_directories: false,
96 dependencies: deps,
97 install: true,
98 install_dir: get_option('bindir'))
99
Deepak Kodihalli6935cf62020-06-15 23:38:27 -0500100systemd_system_unit_dir = systemd.get_pkgconfig_variable(
101 'systemdsystemunitdir',
102 define_variable: ['prefix', get_option('prefix')])
Manojkiran Edafec5d592021-01-21 12:27:34 +0530103
Deepak Kodihalli6935cf62020-06-15 23:38:27 -0500104configure_file(
105 copy: true,
Manojkiran Edafec5d592021-01-21 12:27:34 +0530106 input: 'pldmd/service_files/pldmd.service',
Deepak Kodihalli6935cf62020-06-15 23:38:27 -0500107 install: true,
108 install_dir: systemd_system_unit_dir,
109 output: 'pldmd.service',
110)
111
Manojkiran Edafec5d592021-01-21 12:27:34 +0530112if get_option('oem-ibm').enabled()
113 subdir('oem/ibm/service_files')
114endif
115
Deepak Kodihallif7f5da92020-06-17 05:56:10 -0500116subdir('pldmtool')
George Liuab437e52020-01-19 17:12:19 +0800117
Deepak Kodihalli6e51e372020-06-19 03:49:07 -0500118subdir('configurations')
119
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500120if get_option('tests').enabled()
121 subdir('test')
122endif
Deepak Kodihalli9d494bb2019-11-05 01:28:43 -0600123
124if get_option('utilities').enabled()
125 subdir('utilities')
126endif
Lei YU31fc47e2020-02-27 11:41:45 +0800127
George Liu4c1a3fd2020-03-10 08:25:21 +0800128if get_option('softoff').enabled()
129 subdir('softoff')
130endif
131
Lei YU31fc47e2020-02-27 11:41:45 +0800132endif # pldm-only