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') 20if get_option('oem-ibm').enabled() 21 conf_data.set_quoted('FILE_TABLE_JSON', '/usr/share/pldm/fileTable.json') 22 conf_data.set_quoted('LID_PERM_DIR', '/var/lib/pldm/lid') 23 conf_data.set_quoted('LID_TEMP_DIR', '/var/lib/pldm/lid/temp') 24 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') 32subdir('libpldmresponder') 33subdir('tool') 34 35deps = [ 36 libpldm, 37 libpldmresponder, 38 dependency('sdbusplus'), 39 dependency('sdeventplus'), 40 dependency('phosphor-dbus-interfaces') 41] 42 43executable( 44 'pldmd', 45 'pldmd.cpp', 46 'dbus_impl_requester.cpp', 47 'instance_id.cpp', 48 implicit_include_directories: false, 49 dependencies: deps, 50 install: true, 51 install_dir: get_option('bindir')) 52 53if get_option('tests').enabled() 54 subdir('test') 55endif 56 57if get_option('utilities').enabled() 58 subdir('utilities') 59endif 60