blob: ca276f639f22e38688d2189242c521849e96684c [file] [log] [blame]
Vijay Khemkaabcc94f2020-08-11 15:27:44 -07001project(
2 'phosphor-virtual-sensor',
3 'cpp',
4 version: '1.0',
5 default_options: [
Patrick Williamsff2df992021-08-26 10:23:08 -05006 'buildtype=debugoptimized',
Patrick Williamsce4241c2023-07-12 11:15:56 -05007 'cpp_std=c++23',
Patrick Williamsff2df992021-08-26 10:23:08 -05008 'warning_level=3',
9 'werror=true',
Vijay Khemkaabcc94f2020-08-11 15:27:44 -070010 ],
Patrick Williamsce4241c2023-07-12 11:15:56 -050011 meson_version: '>=1.1.1',
Vijay Khemkaabcc94f2020-08-11 15:27:44 -070012)
13
Vijay Khemka3ed9a512020-08-21 16:13:05 -070014cpp = meson.get_compiler('cpp')
15if cpp.has_header('exprtk.hpp')
16 exprtk = declare_dependency()
17else
18 subproject('exprtk', required: false)
19 exprtk = declare_dependency(
20 include_directories: 'subprojects/exprtk'
21 )
22endif
23
Patrick Williamsd9aa2272021-04-27 16:38:07 -050024if cpp.has_header('nlohmann/json.hpp')
Patrick Williams8d5dff52021-04-16 10:52:54 -050025 nlohmann_json = declare_dependency()
26else
27 subproject('nlohmann-json')
28 nlohmann_json = declare_dependency(
29 include_directories: [
30 'subprojects/nlohmann-json/single_include',
31 'subprojects/nlohmann-json/single_include/nlohmann',
32 ]
33 )
34endif
Vijay Khemka3ed9a512020-08-21 16:13:05 -070035
Vijay Khemkaabcc94f2020-08-11 15:27:44 -070036executable(
37 'virtual-sensor',
38 [
39 'virtualSensor.cpp',
40 ],
41 dependencies: [
Patrick Williamsb729eac2022-03-21 10:14:47 -050042 dependency('phosphor-dbus-interfaces'),
43 dependency('phosphor-logging'),
44 dependency('sdbusplus'),
Vijay Khemka3ed9a512020-08-21 16:13:05 -070045 exprtk,
Patrick Williams8d5dff52021-04-16 10:52:54 -050046 nlohmann_json,
Vijay Khemkaabcc94f2020-08-11 15:27:44 -070047 ],
48 install: true,
49 install_dir: get_option('bindir')
50)
51
52packagedir = join_paths(
53 get_option('prefix'),
54 get_option('datadir'),
55 meson.project_name(),
56)
57
Patrick Williams32dff212023-02-09 13:54:18 -060058install_data(sources : 'virtual_sensor_config.json', install_dir : packagedir)
Vijay Khemkaabcc94f2020-08-11 15:27:44 -070059
60systemd = dependency('systemd')
61conf_data = configuration_data()
62conf_data.set('bindir', get_option('prefix') / get_option('bindir'))
63configure_file(
64 input: 'phosphor-virtual-sensor.service.in',
65 output: 'phosphor-virtual-sensor.service',
66 configuration: conf_data,
67 install: true,
Patrick Williams209a8802023-04-12 08:01:25 -050068 install_dir: systemd.get_variable('systemdsystemunitdir'))