blob: c40b9f3b5976e62fb1d91e3005d627c9aacb5874 [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
Wludzik, Jozef503c1582020-12-11 14:48:01 +010071add_project_arguments(
72 '-DTELEMETRY_MAX_REPORTS=' + get_option('max-reports').to_string(),
73 '-DTELEMETRY_MAX_READING_PARAMS=' + get_option('max-reading-parameters').to_string(),
74 '-DTELEMETRY_MIN_INTERVAL=' + get_option('min-interval').to_string(),
Wludzik, Jozef76833cb2020-12-21 14:42:41 +010075 '-DTELEMETRY_MAX_TRIGGERS=' + get_option('max-triggers').to_string(),
Wludzik, Jozef503c1582020-12-11 14:48:01 +010076 language: 'cpp'
77)
78
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020079executable(
80 'telemetry',
81 [
82 'src/main.cpp',
Krzysztof Grobelnyc8e3a642020-10-23 12:29:16 +020083 'src/metric.cpp',
Krzysztof Grobelny7f06f612020-09-24 13:42:10 +020084 'src/persistent_json_storage.cpp',
Wludzik, Jozefcb88cfd2020-09-28 16:38:57 +020085 'src/report.cpp',
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +020086 'src/report_factory.cpp',
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020087 'src/report_manager.cpp',
Krzysztof Grobelnyb5645942020-09-29 11:52:45 +020088 'src/sensor.cpp',
Krzysztof Grobelny7f06f612020-09-24 13:42:10 +020089 'src/sensor_cache.cpp',
Wludzik, Jozef76833cb2020-12-21 14:42:41 +010090 'src/trigger.cpp',
91 'src/trigger_factory.cpp',
92 'src/trigger_manager.cpp',
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020093 ],
94 dependencies: [
95 boost,
Krzysztof Grobelny73da6902020-09-24 13:42:04 +020096 nlohmann_json,
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020097 sdbusplus,
98 phosphor_logging,
99 ],
100 include_directories: 'src',
101 install: true,
102 install_dir: get_option('prefix') / get_option('bindir'),
103 pie: true,
104)
105
106configure_file(
107 input: 'xyz.openbmc_project.Telemetry.service.in',
108 output: 'xyz.openbmc_project.Telemetry.service',
109 configuration: {
110 'bindir': get_option('prefix') / get_option('bindir'),
111 },
112 install: true,
113 install_dir: systemd.get_pkgconfig_variable('systemdsystemunitdir'),
114)
Krzysztof Grobelny73da6902020-09-24 13:42:04 +0200115
116if get_option('buildtest')
117 subdir('tests')
118endif