blob: 22e0cc3420a0afe3bbe64ebfa80610fba4046d12 [file] [log] [blame]
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +02001project(
2 'Telemetry',
3 'cpp',
Wludzik, Jozef0e29f432020-11-17 08:22:33 +01004 meson_version: '>=0.54.3',
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +02005 default_options: [
6 'buildtype=debugoptimized',
7 'cpp_std=c++17',
Wludzik, Jozefa4bf7402020-10-21 15:08:58 +02008 # TODO: Without RTTI telemetry does not build using Boost 1.74.0
9 # https://github.com/chriskohlhoff/asio/issues/533
10 #'cpp_rtti=false',
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020011 'warning_level=3',
12 'werror=true',
13 'b_lto=true',
14 ],
15 license: 'Apache-2.0',
16)
17
18cpp = meson.get_compiler('cpp')
19add_project_arguments(
20 cpp.get_supported_arguments([
21 '-DBOOST_ASIO_DISABLE_THREADS',
22 '-DBOOST_ALL_NO_LIB',
23 '-DBOOST_SYSTEM_NO_DEPRECATED',
24 '-DBOOST_ASIO_NO_DEPRECATED',
25 '-DBOOST_NO_RTTI',
26 '-DBOOST_NO_TYPEID',
27 '-Wno-unused-parameter',
28 ]),
29 language: 'cpp'
30)
31
Krzysztof Grobelnyb5645942020-09-29 11:52:45 +020032boost = dependency(
33 'boost',
34 version: '>=1.74.0',
35 required: false,
36 modules: ['coroutine'])
37
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020038if not boost.found()
39 subproject('boost', required: false)
Wludzik, Jozefa4bf7402020-10-21 15:08:58 +020040 boost = declare_dependency(include_directories: 'subprojects/boost_1_74_0')
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020041endif
42
43phosphor_logging = dependency('phosphor-logging', required: false)
44if not phosphor_logging.found()
45 subproject('phosphor-logging', required: false)
46 phosphor_logging = declare_dependency(
47 include_directories: 'subprojects/phosphor-logging'
48 )
49endif
50
51sdbusplus = dependency('sdbusplus',required : false)
52if not sdbusplus.found()
53 sdbusplus_proj = subproject('sdbusplus', required: true)
54 sdbusplus = sdbusplus_proj.get_variable('sdbusplus_dep')
55endif
56
57systemd = dependency('systemd')
58
Krzysztof Grobelny73da6902020-09-24 13:42:04 +020059if cpp.has_header('nlohmann/json.hpp')
60 nlohmann_json = declare_dependency()
61else
62 subproject('nlohmann', required: false)
63 nlohmann_json = declare_dependency(
64 include_directories: [
65 'subprojects/nlohmann/single_include',
66 'subprojects/nlohmann/single_include/nlohmann',
67 ]
68 )
69endif
70
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020071executable(
72 'telemetry',
73 [
74 'src/main.cpp',
Krzysztof Grobelnyc8e3a642020-10-23 12:29:16 +020075 'src/metric.cpp',
Krzysztof Grobelny7f06f612020-09-24 13:42:10 +020076 'src/persistent_json_storage.cpp',
Wludzik, Jozefcb88cfd2020-09-28 16:38:57 +020077 'src/report.cpp',
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +020078 'src/report_factory.cpp',
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020079 'src/report_manager.cpp',
Krzysztof Grobelnyb5645942020-09-29 11:52:45 +020080 'src/sensor.cpp',
Krzysztof Grobelny7f06f612020-09-24 13:42:10 +020081 'src/sensor_cache.cpp',
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020082 ],
83 dependencies: [
84 boost,
Krzysztof Grobelny73da6902020-09-24 13:42:04 +020085 nlohmann_json,
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020086 sdbusplus,
87 phosphor_logging,
88 ],
89 include_directories: 'src',
90 install: true,
91 install_dir: get_option('prefix') / get_option('bindir'),
92 pie: true,
93)
94
95configure_file(
96 input: 'xyz.openbmc_project.Telemetry.service.in',
97 output: 'xyz.openbmc_project.Telemetry.service',
98 configuration: {
99 'bindir': get_option('prefix') / get_option('bindir'),
100 },
101 install: true,
102 install_dir: systemd.get_pkgconfig_variable('systemdsystemunitdir'),
103)
Krzysztof Grobelny73da6902020-09-24 13:42:04 +0200104
105if get_option('buildtest')
106 subdir('tests')
107endif