blob: 52af1d9c8c3e6a3f638310dedecd2a7f934c3c1b [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 Kodihalli3c275e12019-09-21 06:39:39 -050020if get_option('oem-ibm').enabled()
Deepak Kodihalli7523d5c2019-11-08 02:22:29 -060021 conf_data.set_quoted('FILE_TABLE_JSON', '/usr/share/pldm/fileTable.json')
Adriana Kobylakc964aae2019-12-05 13:30:39 -060022 conf_data.set_quoted('LID_PERM_DIR', '/usr/share/host-fw')
23 conf_data.set_quoted('LID_TEMP_DIR', '/usr/share/host-fw')
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050024 add_global_arguments('-DOEM_IBM', language : 'c')
25 add_global_arguments('-DOEM_IBM', language : 'cpp')
26endif
27configure_file(output: 'config.h',
28 configuration: conf_data
29)
30
31subdir('libpldm')
George Liuab437e52020-01-19 17:12:19 +080032
33libpldmutils_headers = ['.']
34libpldmutils = library(
35 'pldmutils',
36 'utils.cpp',
37 version: meson.project_version(),
38 dependencies: [
39 libpldm,
40 dependency('phosphor-dbus-interfaces'),
41 dependency('sdbusplus'),
42 ],
43 install: true,
44 include_directories: include_directories(libpldmutils_headers),
45)
46
47libpldmutils = declare_dependency(
48 include_directories: include_directories(libpldmutils_headers),
49 link_with: libpldmutils)
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050050subdir('libpldmresponder')
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050051
52deps = [
53 libpldm,
54 libpldmresponder,
Deepak Kodihalli37998bf2019-11-11 04:06:53 -060055 dependency('sdbusplus'),
Deepak Kodihalli4de4d002019-11-11 02:41:43 -060056 dependency('sdeventplus'),
57 dependency('phosphor-dbus-interfaces')
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050058]
59
60executable(
61 'pldmd',
62 'pldmd.cpp',
Deepak Kodihalli4de4d002019-11-11 02:41:43 -060063 'dbus_impl_requester.cpp',
64 'instance_id.cpp',
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050065 implicit_include_directories: false,
66 dependencies: deps,
67 install: true,
68 install_dir: get_option('bindir'))
69
George Liuab437e52020-01-19 17:12:19 +080070subdir('tool')
71
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050072if get_option('tests').enabled()
73 subdir('test')
74endif
Deepak Kodihalli9d494bb2019-11-05 01:28:43 -060075
76if get_option('utilities').enabled()
77 subdir('utilities')
78endif