xref: /openbmc/pldm/meson.build (revision 1f4df219)
1project('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()
17conf_data.set_quoted('BIOS_JSONS_DIR', '/usr/share/pldm/bios')
18conf_data.set_quoted('BIOS_TABLES_DIR', '/var/lib/pldm/bios')
19conf_data.set_quoted('PDR_JSONS_DIR', '/usr/share/pldm/pdr')
20conf_data.set_quoted('FRU_JSONS_DIR', '/usr/share/pldm/fru')
21if get_option('oem-ibm').enabled()
22  conf_data.set_quoted('FILE_TABLE_JSON', '/usr/share/pldm/fileTable.json')
23  conf_data.set_quoted('LID_PERM_DIR', '/usr/share/host-fw')
24  conf_data.set_quoted('LID_TEMP_DIR', '/usr/share/host-fw')
25  add_global_arguments('-DOEM_IBM', language : 'c')
26  add_global_arguments('-DOEM_IBM', language : 'cpp')
27endif
28configure_file(output: 'config.h',
29  configuration: conf_data
30)
31
32subdir('libpldm')
33
34libpldmutils_headers = ['.']
35libpldmutils = library(
36  'pldmutils',
37  'utils.cpp',
38  version: meson.project_version(),
39  dependencies: [
40      libpldm,
41      dependency('phosphor-dbus-interfaces'),
42      dependency('sdbusplus'),
43  ],
44  install: true,
45  include_directories: include_directories(libpldmutils_headers),
46)
47
48libpldmutils = declare_dependency(
49  include_directories: include_directories(libpldmutils_headers),
50  link_with: libpldmutils)
51subdir('libpldmresponder')
52
53deps = [
54  libpldm,
55  libpldmresponder,
56  dependency('sdbusplus'),
57  dependency('sdeventplus'),
58  dependency('phosphor-dbus-interfaces')
59]
60
61executable(
62  'pldmd',
63  'pldmd.cpp',
64  'dbus_impl_requester.cpp',
65  'instance_id.cpp',
66  implicit_include_directories: false,
67  dependencies: deps,
68  install: true,
69  install_dir: get_option('bindir'))
70
71subdir('tool')
72
73if get_option('tests').enabled()
74  subdir('test')
75endif
76
77if get_option('utilities').enabled()
78  subdir('utilities')
79endif
80