1project('pldm', ['c', 'cpp'], 2 version: '0.1', meson_version: '>=0.53.2', 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') 21conf_data.set_quoted('HOST_JSONS_DIR', '/usr/share/pldm/host') 22conf_data.set_quoted('EVENTS_JSONS_DIR', '/usr/share/pldm/events') 23if get_option('oem-ibm').enabled() 24 conf_data.set_quoted('FILE_TABLE_JSON', '/usr/share/pldm/fileTable.json') 25 conf_data.set_quoted('LID_RUNNING_DIR', '/var/lib/phosphor-software-manager/hostfw/running') 26 conf_data.set_quoted('LID_ALTERNATE_DIR', '/var/lib/phosphor-software-manager/hostfw/alternate') 27 conf_data.set_quoted('LID_PATCH_DIR', '/usr/local/share/hostfw/') 28 conf_data.set('DMA_MAXSIZE', get_option('oem-ibm-dma-maxsize')) 29 add_global_arguments('-DOEM_IBM', language : 'c') 30 add_global_arguments('-DOEM_IBM', language : 'cpp') 31endif 32configure_file(output: 'config.h', 33 configuration: conf_data 34) 35 36subdir('libpldm') 37 38if get_option('libpldm-only').disabled() 39 40libpldmutils_headers = ['.'] 41libpldmutils = library( 42 'pldmutils', 43 'common/utils.cpp', 44 version: meson.project_version(), 45 dependencies: [ 46 libpldm, 47 dependency('phosphor-dbus-interfaces'), 48 dependency('sdbusplus'), 49 ], 50 install: true, 51 include_directories: include_directories(libpldmutils_headers), 52) 53 54libpldmutils = declare_dependency( 55 include_directories: include_directories(libpldmutils_headers), 56 link_with: libpldmutils) 57subdir('libpldmresponder') 58 59deps = [ 60 libpldm, 61 libpldmutils, 62 libpldmresponder, 63 libpldmutils, 64 dependency('sdbusplus'), 65 dependency('sdeventplus'), 66 dependency('phosphor-dbus-interfaces') 67] 68 69executable( 70 'pldmd', 71 'pldmd/pldmd.cpp', 72 'pldmd/dbus_impl_requester.cpp', 73 'pldmd/instance_id.cpp', 74 'pldmd/dbus_impl_pdr.cpp', 75 'host-bmc/dbus_to_host_effecters.cpp', 76 implicit_include_directories: false, 77 dependencies: deps, 78 install: true, 79 install_dir: get_option('bindir')) 80 81systemd = dependency('systemd') 82systemd_system_unit_dir = systemd.get_pkgconfig_variable( 83 'systemdsystemunitdir', 84 define_variable: ['prefix', get_option('prefix')]) 85configure_file( 86 copy: true, 87 input: 'pldmd/pldmd.service', 88 install: true, 89 install_dir: systemd_system_unit_dir, 90 output: 'pldmd.service', 91) 92 93subdir('pldmtool') 94 95subdir('configurations') 96 97if get_option('tests').enabled() 98 subdir('test') 99endif 100 101if get_option('utilities').enabled() 102 subdir('utilities') 103endif 104 105endif # pldm-only 106