blob: 73bdd3225d0253e8f6ca341ba48f4a109038be02 [file] [log] [blame]
project(
'phosphor-srvcfg-manager',
'cpp',
default_options: ['warning_level=3', 'werror=true', 'cpp_std=c++23'],
license: 'Apache-2.0',
version: '1.0',
meson_version: '>=1.1.1',
)
# Wno-psabi reduces the number of "Note:" messages when cross-compiling some STL
# stuff for ARM. See https://stackoverflow.com/questions/48149323/strange-gcc-warning-when-compiling-qt-project
# Basically, gcc 6 and gcc 7 are not ABI compatible, but since the whole OpenBMC
# project uses the same compiler, we can safely ignmore these info notes.
add_project_arguments('-Wno-psabi', language: 'cpp')
boost_args = [
'-DBOOST_ALL_NO_LIB',
'-DBOOST_ASIO_DISABLE_THREADS',
'-DBOOST_COROUTINES_NO_DEPRECATION_WARNING',
'-DBOOST_ERROR_CODE_HEADER_ONLY',
'-DBOOST_NO_RTTI',
'-DBOOST_NO_TYPEID',
'-DBOOST_SYSTEM_NO_DEPRECATED',
]
deps = [
dependency('boost'),
dependency('boost', modules: ['coroutine']),
dependency('phosphor-dbus-interfaces'),
dependency('phosphor-logging'),
dependency('sdbusplus'),
dependency('libsystemd'),
]
if (get_option('usb-code-update').allowed())
add_project_arguments('-DUSB_CODE_UPDATE', language: 'cpp')
endif
executable(
'phosphor-srvcfg-manager',
'src/main.cpp',
'src/srvcfg_manager.cpp',
'src/utils.cpp',
implicit_include_directories: false,
include_directories: ['inc'],
dependencies: deps,
cpp_args: boost_args,
install: true,
install_dir: get_option('bindir'),
)
systemd = dependency('systemd')
systemd_system_unit_dir = systemd.get_variable(
'systemdsystemunitdir',
pkgconfig_define: ['prefix', get_option('prefix')],
)
fs = import('fs')
fs.copyfile(
'srvcfg-manager.service',
install: true,
install_dir: systemd_system_unit_dir,
)