blob: d6fd8c9781547ec94d04ce4ce319094f9c5376df [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 Kodihalli3c275e12019-09-21 06:39:39 -050021if get_option('oem-ibm').enabled()
Deepak Kodihalli7523d5c2019-11-08 02:22:29 -060022 conf_data.set_quoted('FILE_TABLE_JSON', '/usr/share/pldm/fileTable.json')
Adriana Kobylakc964aae2019-12-05 13:30:39 -060023 conf_data.set_quoted('LID_PERM_DIR', '/usr/share/host-fw')
24 conf_data.set_quoted('LID_TEMP_DIR', '/usr/share/host-fw')
Deepak Kodihalli4c164b02020-03-07 03:23:31 -060025 conf_data.set('DMA_MAXSIZE', get_option('oem-ibm-dma-maxsize'))
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050026 add_global_arguments('-DOEM_IBM', language : 'c')
27 add_global_arguments('-DOEM_IBM', language : 'cpp')
28endif
29configure_file(output: 'config.h',
30 configuration: conf_data
31)
32
33subdir('libpldm')
George Liuab437e52020-01-19 17:12:19 +080034
Lei YU31fc47e2020-02-27 11:41:45 +080035if get_option('libpldm-only').disabled()
36
George Liuab437e52020-01-19 17:12:19 +080037libpldmutils_headers = ['.']
38libpldmutils = library(
39 'pldmutils',
40 'utils.cpp',
41 version: meson.project_version(),
42 dependencies: [
43 libpldm,
44 dependency('phosphor-dbus-interfaces'),
45 dependency('sdbusplus'),
46 ],
47 install: true,
48 include_directories: include_directories(libpldmutils_headers),
49)
50
51libpldmutils = declare_dependency(
52 include_directories: include_directories(libpldmutils_headers),
53 link_with: libpldmutils)
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050054subdir('libpldmresponder')
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050055
56deps = [
57 libpldm,
58 libpldmresponder,
Pavithra Barithaya51efaf82020-04-02 02:42:27 -050059 libpldmutils,
Deepak Kodihalli37998bf2019-11-11 04:06:53 -060060 dependency('sdbusplus'),
Deepak Kodihalli4de4d002019-11-11 02:41:43 -060061 dependency('sdeventplus'),
62 dependency('phosphor-dbus-interfaces')
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050063]
64
65executable(
66 'pldmd',
67 'pldmd.cpp',
Deepak Kodihalli4de4d002019-11-11 02:41:43 -060068 'dbus_impl_requester.cpp',
69 'instance_id.cpp',
Pavithra Barithaya51efaf82020-04-02 02:42:27 -050070 'host_pdr_handler.cpp',
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050071 implicit_include_directories: false,
72 dependencies: deps,
73 install: true,
74 install_dir: get_option('bindir'))
75
George Liuab437e52020-01-19 17:12:19 +080076subdir('tool')
77
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050078if get_option('tests').enabled()
79 subdir('test')
80endif
Deepak Kodihalli9d494bb2019-11-05 01:28:43 -060081
82if get_option('utilities').enabled()
83 subdir('utilities')
84endif
Lei YU31fc47e2020-02-27 11:41:45 +080085
86endif # pldm-only