blob: b3f39fe94d32238a5842b88fb653b863a2eb4fd7 [file] [log] [blame]
Deepak Kodihalli3c275e12019-09-21 06:39:39 -05001project('pldm', ['c', 'cpp'],
2 version: '0.1', meson_version: '>=0.49.0',
3 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 Kobylakc964aae2019-12-05 13:30:39 -060025 conf_data.set_quoted('LID_PERM_DIR', '/usr/share/host-fw')
26 conf_data.set_quoted('LID_TEMP_DIR', '/usr/share/host-fw')
Deepak Kodihalli4c164b02020-03-07 03:23:31 -060027 conf_data.set('DMA_MAXSIZE', get_option('oem-ibm-dma-maxsize'))
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050028 add_global_arguments('-DOEM_IBM', language : 'c')
29 add_global_arguments('-DOEM_IBM', language : 'cpp')
30endif
31configure_file(output: 'config.h',
32 configuration: conf_data
33)
34
35subdir('libpldm')
George Liuab437e52020-01-19 17:12:19 +080036
Lei YU31fc47e2020-02-27 11:41:45 +080037if get_option('libpldm-only').disabled()
38
George Liuab437e52020-01-19 17:12:19 +080039libpldmutils_headers = ['.']
40libpldmutils = library(
41 'pldmutils',
42 'utils.cpp',
43 version: meson.project_version(),
44 dependencies: [
45 libpldm,
46 dependency('phosphor-dbus-interfaces'),
47 dependency('sdbusplus'),
48 ],
49 install: true,
50 include_directories: include_directories(libpldmutils_headers),
51)
52
53libpldmutils = declare_dependency(
54 include_directories: include_directories(libpldmutils_headers),
55 link_with: libpldmutils)
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050056subdir('libpldmresponder')
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050057
58deps = [
59 libpldm,
Tom Joseph250c4752020-04-15 10:32:45 +053060 libpldmutils,
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050061 libpldmresponder,
Pavithra Barithaya51efaf82020-04-02 02:42:27 -050062 libpldmutils,
Deepak Kodihalli37998bf2019-11-11 04:06:53 -060063 dependency('sdbusplus'),
Deepak Kodihalli4de4d002019-11-11 02:41:43 -060064 dependency('sdeventplus'),
65 dependency('phosphor-dbus-interfaces')
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050066]
67
68executable(
69 'pldmd',
70 'pldmd.cpp',
Deepak Kodihalli4de4d002019-11-11 02:41:43 -060071 'dbus_impl_requester.cpp',
72 'instance_id.cpp',
Pavithra Barithaya0f74c982020-04-27 02:17:10 -050073 'dbus_impl_pdr.cpp',
Deepak Kodihalliac19bd62020-06-16 08:25:23 -050074 'host-bmc/dbus_to_host_effecters.cpp',
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050075 implicit_include_directories: false,
76 dependencies: deps,
77 install: true,
78 install_dir: get_option('bindir'))
79
Deepak Kodihalli6935cf62020-06-15 23:38:27 -050080systemd = dependency('systemd')
81systemd_system_unit_dir = systemd.get_pkgconfig_variable(
82 'systemdsystemunitdir',
83 define_variable: ['prefix', get_option('prefix')])
84configure_file(
85 copy: true,
86 input: 'pldmd.service',
87 install: true,
88 install_dir: systemd_system_unit_dir,
89 output: 'pldmd.service',
90)
91
George Liuab437e52020-01-19 17:12:19 +080092subdir('tool')
93
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050094if get_option('tests').enabled()
95 subdir('test')
96endif
Deepak Kodihalli9d494bb2019-11-05 01:28:43 -060097
98if get_option('utilities').enabled()
99 subdir('utilities')
100endif
Lei YU31fc47e2020-02-27 11:41:45 +0800101
102endif # pldm-only