blob: ca276f639f22e38688d2189242c521849e96684c [file] [log] [blame]
project(
'phosphor-virtual-sensor',
'cpp',
version: '1.0',
default_options: [
'buildtype=debugoptimized',
'cpp_std=c++23',
'warning_level=3',
'werror=true',
],
meson_version: '>=1.1.1',
)
cpp = meson.get_compiler('cpp')
if cpp.has_header('exprtk.hpp')
exprtk = declare_dependency()
else
subproject('exprtk', required: false)
exprtk = declare_dependency(
include_directories: 'subprojects/exprtk'
)
endif
if cpp.has_header('nlohmann/json.hpp')
nlohmann_json = declare_dependency()
else
subproject('nlohmann-json')
nlohmann_json = declare_dependency(
include_directories: [
'subprojects/nlohmann-json/single_include',
'subprojects/nlohmann-json/single_include/nlohmann',
]
)
endif
executable(
'virtual-sensor',
[
'virtualSensor.cpp',
],
dependencies: [
dependency('phosphor-dbus-interfaces'),
dependency('phosphor-logging'),
dependency('sdbusplus'),
exprtk,
nlohmann_json,
],
install: true,
install_dir: get_option('bindir')
)
packagedir = join_paths(
get_option('prefix'),
get_option('datadir'),
meson.project_name(),
)
install_data(sources : 'virtual_sensor_config.json', install_dir : packagedir)
systemd = dependency('systemd')
conf_data = configuration_data()
conf_data.set('bindir', get_option('prefix') / get_option('bindir'))
configure_file(
input: 'phosphor-virtual-sensor.service.in',
output: 'phosphor-virtual-sensor.service',
configuration: conf_data,
install: true,
install_dir: systemd.get_variable('systemdsystemunitdir'))