blob: 24516935ab34f34b635ceaea6a20d81e9d24cbac [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')
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050023if get_option('oem-ibm').enabled()
Deepak Kodihalli7523d5c2019-11-08 02:22:29 -060024 conf_data.set_quoted('FILE_TABLE_JSON', '/usr/share/pldm/fileTable.json')
Adriana Kobylak76f820c2020-07-16 11:02:03 -050025 conf_data.set_quoted('LID_RUNNING_DIR', '/var/lib/phosphor-software-manager/hostfw/running')
26 conf_data.set_quoted('LID_ALTERNATE_DIR', '/var/lib/phosphor-software-manager/hostfw/alternate')
27 conf_data.set_quoted('LID_PATCH_DIR', '/usr/local/share/hostfw/')
Deepak Kodihalli4c164b02020-03-07 03:23:31 -060028 conf_data.set('DMA_MAXSIZE', get_option('oem-ibm-dma-maxsize'))
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050029 add_global_arguments('-DOEM_IBM', language : 'c')
30 add_global_arguments('-DOEM_IBM', language : 'cpp')
31endif
32configure_file(output: 'config.h',
33 configuration: conf_data
34)
35
36subdir('libpldm')
George Liuab437e52020-01-19 17:12:19 +080037
Lei YU31fc47e2020-02-27 11:41:45 +080038if get_option('libpldm-only').disabled()
39
George Liuab437e52020-01-19 17:12:19 +080040libpldmutils_headers = ['.']
41libpldmutils = library(
42 'pldmutils',
Deepak Kodihallid130e1a2020-06-17 05:55:32 -050043 'common/utils.cpp',
George Liuab437e52020-01-19 17:12:19 +080044 version: meson.project_version(),
45 dependencies: [
46 libpldm,
47 dependency('phosphor-dbus-interfaces'),
48 dependency('sdbusplus'),
49 ],
50 install: true,
51 include_directories: include_directories(libpldmutils_headers),
52)
53
54libpldmutils = declare_dependency(
55 include_directories: include_directories(libpldmutils_headers),
56 link_with: libpldmutils)
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050057subdir('libpldmresponder')
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050058
59deps = [
60 libpldm,
Tom Joseph250c4752020-04-15 10:32:45 +053061 libpldmutils,
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050062 libpldmresponder,
Pavithra Barithaya51efaf82020-04-02 02:42:27 -050063 libpldmutils,
Deepak Kodihalli37998bf2019-11-11 04:06:53 -060064 dependency('sdbusplus'),
Deepak Kodihalli4de4d002019-11-11 02:41:43 -060065 dependency('sdeventplus'),
66 dependency('phosphor-dbus-interfaces')
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050067]
68
69executable(
70 'pldmd',
Deepak Kodihalli1521f6d2020-06-16 08:51:02 -050071 'pldmd/pldmd.cpp',
72 'pldmd/dbus_impl_requester.cpp',
73 'pldmd/instance_id.cpp',
74 'pldmd/dbus_impl_pdr.cpp',
Deepak Kodihalliac19bd62020-06-16 08:25:23 -050075 'host-bmc/dbus_to_host_effecters.cpp',
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050076 implicit_include_directories: false,
77 dependencies: deps,
78 install: true,
79 install_dir: get_option('bindir'))
80
Deepak Kodihalli6935cf62020-06-15 23:38:27 -050081systemd = dependency('systemd')
82systemd_system_unit_dir = systemd.get_pkgconfig_variable(
83 'systemdsystemunitdir',
84 define_variable: ['prefix', get_option('prefix')])
85configure_file(
86 copy: true,
Deepak Kodihalli1521f6d2020-06-16 08:51:02 -050087 input: 'pldmd/pldmd.service',
Deepak Kodihalli6935cf62020-06-15 23:38:27 -050088 install: true,
89 install_dir: systemd_system_unit_dir,
90 output: 'pldmd.service',
91)
92
Deepak Kodihallif7f5da92020-06-17 05:56:10 -050093subdir('pldmtool')
George Liuab437e52020-01-19 17:12:19 +080094
Deepak Kodihalli6e51e372020-06-19 03:49:07 -050095subdir('configurations')
96
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050097if get_option('tests').enabled()
98 subdir('test')
99endif
Deepak Kodihalli9d494bb2019-11-05 01:28:43 -0600100
101if get_option('utilities').enabled()
102 subdir('utilities')
103endif
Lei YU31fc47e2020-02-27 11:41:45 +0800104
105endif # pldm-only