blob: acd0e98cb7a832478e38262d34dcfe4aea100c06 [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',
7 'cpp_std=c++17'
8 ])
9
10# Wno-psabi reduces the number of "Note:" messages when cross-compiling some STL
11# stuff for ARM. See https://stackoverflow.com/questions/48149323/strange-gcc-warning-when-compiling-qt-project
12# Basically, gcc 6 and gcc 7 are not ABI compatible, but since the whole OpenBMC
13# project uses the same compiler, we can safely ignmore these info notes.
14add_project_arguments('-Wno-psabi', language: 'cpp')
15
16conf_data = configuration_data()
Deepak Kodihalli7523d5c2019-11-08 02:22:29 -060017conf_data.set_quoted('BIOS_JSONS_DIR', '/usr/share/pldm/bios')
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050018conf_data.set_quoted('BIOS_TABLES_DIR', '/var/lib/pldm/bios')
Deepak Kodihalli7523d5c2019-11-08 02:22:29 -060019conf_data.set_quoted('PDR_JSONS_DIR', '/usr/share/pldm/pdr')
Deepak Kodihallie60c5822019-10-23 03:26:15 -050020conf_data.set_quoted('FRU_JSONS_DIR', '/usr/share/pldm/fru')
Deepak Kodihalli87514cc2020-04-16 09:08:38 -050021conf_data.set_quoted('HOST_JSONS_DIR', '/usr/share/pldm/host')
TOM JOSEPHd4d97a52020-03-23 14:36:34 +053022conf_data.set_quoted('EVENTS_JSONS_DIR', '/usr/share/pldm/events')
George Liuab865f62020-03-10 09:12:52 +080023if get_option('softoff').enabled()
24 conf_data.set('SOFTOFF_TIMEOUT_SECONDS', get_option('softoff-timeout-seconds'))
25endif
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050026if get_option('oem-ibm').enabled()
Deepak Kodihalli7523d5c2019-11-08 02:22:29 -060027 conf_data.set_quoted('FILE_TABLE_JSON', '/usr/share/pldm/fileTable.json')
Adriana Kobylak76f820c2020-07-16 11:02:03 -050028 conf_data.set_quoted('LID_RUNNING_DIR', '/var/lib/phosphor-software-manager/hostfw/running')
29 conf_data.set_quoted('LID_ALTERNATE_DIR', '/var/lib/phosphor-software-manager/hostfw/alternate')
Deepak Kodihalli09b017b2020-08-26 07:37:32 -050030 conf_data.set_quoted('LID_RUNNING_PATCH_DIR', '/usr/local/share/hostfw/running')
31 conf_data.set_quoted('LID_ALTERNATE_PATCH_DIR', '/usr/local/share/hostfw/alternate')
Sampa Misra69508502020-09-08 00:08:21 -050032 conf_data.set_quoted('LID_STAGING_DIR', '/var/lib/phosphor-software-manager/hostfw/staging')
Deepak Kodihalli4c164b02020-03-07 03:23:31 -060033 conf_data.set('DMA_MAXSIZE', get_option('oem-ibm-dma-maxsize'))
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050034 add_global_arguments('-DOEM_IBM', language : 'c')
35 add_global_arguments('-DOEM_IBM', language : 'cpp')
36endif
37configure_file(output: 'config.h',
38 configuration: conf_data
39)
40
Manojkiran Eda001f7882021-01-04 18:21:18 +053041phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces')
42sdbusplus = dependency('sdbusplus')
43sdeventplus = dependency('sdeventplus')
44systemd = dependency('systemd')
45
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050046subdir('libpldm')
George Liuab437e52020-01-19 17:12:19 +080047
Lei YU31fc47e2020-02-27 11:41:45 +080048if get_option('libpldm-only').disabled()
49
George Liuab437e52020-01-19 17:12:19 +080050libpldmutils_headers = ['.']
51libpldmutils = library(
52 'pldmutils',
Deepak Kodihallid130e1a2020-06-17 05:55:32 -050053 'common/utils.cpp',
George Liuab437e52020-01-19 17:12:19 +080054 version: meson.project_version(),
55 dependencies: [
56 libpldm,
Manojkiran Eda001f7882021-01-04 18:21:18 +053057 phosphor_dbus_interfaces,
58 sdbusplus,
George Liuab437e52020-01-19 17:12:19 +080059 ],
60 install: true,
61 include_directories: include_directories(libpldmutils_headers),
62)
63
64libpldmutils = declare_dependency(
65 include_directories: include_directories(libpldmutils_headers),
66 link_with: libpldmutils)
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050067subdir('libpldmresponder')
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050068
69deps = [
70 libpldm,
Tom Joseph250c4752020-04-15 10:32:45 +053071 libpldmutils,
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050072 libpldmresponder,
Pavithra Barithaya51efaf82020-04-02 02:42:27 -050073 libpldmutils,
Manojkiran Eda001f7882021-01-04 18:21:18 +053074 sdbusplus,
75 sdeventplus,
76 phosphor_dbus_interfaces
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050077]
78
79executable(
80 'pldmd',
Deepak Kodihalli1521f6d2020-06-16 08:51:02 -050081 'pldmd/pldmd.cpp',
82 'pldmd/dbus_impl_requester.cpp',
83 'pldmd/instance_id.cpp',
84 'pldmd/dbus_impl_pdr.cpp',
Deepak Kodihalliac19bd62020-06-16 08:25:23 -050085 'host-bmc/dbus_to_host_effecters.cpp',
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050086 implicit_include_directories: false,
87 dependencies: deps,
88 install: true,
89 install_dir: get_option('bindir'))
90
Deepak Kodihalli6935cf62020-06-15 23:38:27 -050091systemd = dependency('systemd')
92systemd_system_unit_dir = systemd.get_pkgconfig_variable(
93 'systemdsystemunitdir',
94 define_variable: ['prefix', get_option('prefix')])
95configure_file(
96 copy: true,
Deepak Kodihalli1521f6d2020-06-16 08:51:02 -050097 input: 'pldmd/pldmd.service',
Deepak Kodihalli6935cf62020-06-15 23:38:27 -050098 install: true,
99 install_dir: systemd_system_unit_dir,
100 output: 'pldmd.service',
101)
102
Deepak Kodihallif7f5da92020-06-17 05:56:10 -0500103subdir('pldmtool')
George Liuab437e52020-01-19 17:12:19 +0800104
Deepak Kodihalli6e51e372020-06-19 03:49:07 -0500105subdir('configurations')
106
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500107if get_option('tests').enabled()
108 subdir('test')
109endif
Deepak Kodihalli9d494bb2019-11-05 01:28:43 -0600110
111if get_option('utilities').enabled()
112 subdir('utilities')
113endif
Lei YU31fc47e2020-02-27 11:41:45 +0800114
George Liu4c1a3fd2020-03-10 08:25:21 +0800115if get_option('softoff').enabled()
116 subdir('softoff')
117endif
118
Lei YU31fc47e2020-02-27 11:41:45 +0800119endif # pldm-only