Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 1 | project('pldm', ['c', 'cpp'], |
Deepak Kodihalli | c3ed786 | 2020-06-19 02:33:29 -0500 | [diff] [blame] | 2 | version: '0.1', meson_version: '>=0.53.2', |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 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. |
| 14 | add_project_arguments('-Wno-psabi', language: 'cpp') |
| 15 | |
| 16 | conf_data = configuration_data() |
Deepak Kodihalli | 7523d5c | 2019-11-08 02:22:29 -0600 | [diff] [blame] | 17 | conf_data.set_quoted('BIOS_JSONS_DIR', '/usr/share/pldm/bios') |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 18 | conf_data.set_quoted('BIOS_TABLES_DIR', '/var/lib/pldm/bios') |
Deepak Kodihalli | 7523d5c | 2019-11-08 02:22:29 -0600 | [diff] [blame] | 19 | conf_data.set_quoted('PDR_JSONS_DIR', '/usr/share/pldm/pdr') |
Deepak Kodihalli | e60c582 | 2019-10-23 03:26:15 -0500 | [diff] [blame] | 20 | conf_data.set_quoted('FRU_JSONS_DIR', '/usr/share/pldm/fru') |
Deepak Kodihalli | 87514cc | 2020-04-16 09:08:38 -0500 | [diff] [blame] | 21 | conf_data.set_quoted('HOST_JSONS_DIR', '/usr/share/pldm/host') |
TOM JOSEPH | d4d97a5 | 2020-03-23 14:36:34 +0530 | [diff] [blame] | 22 | conf_data.set_quoted('EVENTS_JSONS_DIR', '/usr/share/pldm/events') |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 23 | if get_option('oem-ibm').enabled() |
Deepak Kodihalli | 7523d5c | 2019-11-08 02:22:29 -0600 | [diff] [blame] | 24 | conf_data.set_quoted('FILE_TABLE_JSON', '/usr/share/pldm/fileTable.json') |
Adriana Kobylak | c964aae | 2019-12-05 13:30:39 -0600 | [diff] [blame] | 25 | conf_data.set_quoted('LID_PERM_DIR', '/usr/share/host-fw') |
| 26 | conf_data.set_quoted('LID_TEMP_DIR', '/usr/share/host-fw') |
Deepak Kodihalli | 4c164b0 | 2020-03-07 03:23:31 -0600 | [diff] [blame] | 27 | conf_data.set('DMA_MAXSIZE', get_option('oem-ibm-dma-maxsize')) |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 28 | add_global_arguments('-DOEM_IBM', language : 'c') |
| 29 | add_global_arguments('-DOEM_IBM', language : 'cpp') |
| 30 | endif |
| 31 | configure_file(output: 'config.h', |
| 32 | configuration: conf_data |
| 33 | ) |
| 34 | |
| 35 | subdir('libpldm') |
George Liu | ab437e5 | 2020-01-19 17:12:19 +0800 | [diff] [blame] | 36 | |
Lei YU | 31fc47e | 2020-02-27 11:41:45 +0800 | [diff] [blame] | 37 | if get_option('libpldm-only').disabled() |
| 38 | |
George Liu | ab437e5 | 2020-01-19 17:12:19 +0800 | [diff] [blame] | 39 | libpldmutils_headers = ['.'] |
| 40 | libpldmutils = library( |
| 41 | 'pldmutils', |
Deepak Kodihalli | d130e1a | 2020-06-17 05:55:32 -0500 | [diff] [blame] | 42 | 'common/utils.cpp', |
George Liu | ab437e5 | 2020-01-19 17:12:19 +0800 | [diff] [blame] | 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 | |
| 53 | libpldmutils = declare_dependency( |
| 54 | include_directories: include_directories(libpldmutils_headers), |
| 55 | link_with: libpldmutils) |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 56 | subdir('libpldmresponder') |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 57 | |
| 58 | deps = [ |
| 59 | libpldm, |
Tom Joseph | 250c475 | 2020-04-15 10:32:45 +0530 | [diff] [blame] | 60 | libpldmutils, |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 61 | libpldmresponder, |
Pavithra Barithaya | 51efaf8 | 2020-04-02 02:42:27 -0500 | [diff] [blame] | 62 | libpldmutils, |
Deepak Kodihalli | 37998bf | 2019-11-11 04:06:53 -0600 | [diff] [blame] | 63 | dependency('sdbusplus'), |
Deepak Kodihalli | 4de4d00 | 2019-11-11 02:41:43 -0600 | [diff] [blame] | 64 | dependency('sdeventplus'), |
| 65 | dependency('phosphor-dbus-interfaces') |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 66 | ] |
| 67 | |
| 68 | executable( |
| 69 | 'pldmd', |
Deepak Kodihalli | 1521f6d | 2020-06-16 08:51:02 -0500 | [diff] [blame] | 70 | 'pldmd/pldmd.cpp', |
| 71 | 'pldmd/dbus_impl_requester.cpp', |
| 72 | 'pldmd/instance_id.cpp', |
| 73 | 'pldmd/dbus_impl_pdr.cpp', |
Deepak Kodihalli | ac19bd6 | 2020-06-16 08:25:23 -0500 | [diff] [blame] | 74 | 'host-bmc/dbus_to_host_effecters.cpp', |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 75 | implicit_include_directories: false, |
| 76 | dependencies: deps, |
| 77 | install: true, |
| 78 | install_dir: get_option('bindir')) |
| 79 | |
Deepak Kodihalli | 6935cf6 | 2020-06-15 23:38:27 -0500 | [diff] [blame] | 80 | systemd = dependency('systemd') |
| 81 | systemd_system_unit_dir = systemd.get_pkgconfig_variable( |
| 82 | 'systemdsystemunitdir', |
| 83 | define_variable: ['prefix', get_option('prefix')]) |
| 84 | configure_file( |
| 85 | copy: true, |
Deepak Kodihalli | 1521f6d | 2020-06-16 08:51:02 -0500 | [diff] [blame] | 86 | input: 'pldmd/pldmd.service', |
Deepak Kodihalli | 6935cf6 | 2020-06-15 23:38:27 -0500 | [diff] [blame] | 87 | install: true, |
| 88 | install_dir: systemd_system_unit_dir, |
| 89 | output: 'pldmd.service', |
| 90 | ) |
| 91 | |
Deepak Kodihalli | f7f5da9 | 2020-06-17 05:56:10 -0500 | [diff] [blame] | 92 | subdir('pldmtool') |
George Liu | ab437e5 | 2020-01-19 17:12:19 +0800 | [diff] [blame] | 93 | |
Deepak Kodihalli | 6e51e37 | 2020-06-19 03:49:07 -0500 | [diff] [blame] | 94 | subdir('configurations') |
| 95 | |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 96 | if get_option('tests').enabled() |
| 97 | subdir('test') |
| 98 | endif |
Deepak Kodihalli | 9d494bb | 2019-11-05 01:28:43 -0600 | [diff] [blame] | 99 | |
| 100 | if get_option('utilities').enabled() |
| 101 | subdir('utilities') |
| 102 | endif |
Lei YU | 31fc47e | 2020-02-27 11:41:45 +0800 | [diff] [blame] | 103 | |
| 104 | endif # pldm-only |