blob: 145805a2fcdd9f2042364349bf69408a85930ef1 [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',
Wludzik, Jozef596a9942021-01-27 12:28:59 +010027 # TODO: Removed below arg after upgrade to Boost 1.75
28 '-DBOOST_ALLOW_DEPRECATED_HEADERS',
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020029 '-Wno-unused-parameter',
30 ]),
31 language: 'cpp'
32)
33
Krzysztof Grobelnyb5645942020-09-29 11:52:45 +020034boost = dependency(
Wludzik, Jozef596a9942021-01-27 12:28:59 +010035 'boost',
36 version: '>=1.74.0',
37 required: false,
38 modules: ['coroutine'])
39assert(boost.found(),
40 'Missing Boost 1.74.0 or higher, as WA you can set BOOST_ROOT ' +
41 'environemt to point at boost build. To build a boost you can use ' +
42 'script ./scripts/boost_build_1.74.0.sh')
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020043
44phosphor_logging = dependency('phosphor-logging', required: false)
45if not phosphor_logging.found()
46 subproject('phosphor-logging', required: false)
47 phosphor_logging = declare_dependency(
48 include_directories: 'subprojects/phosphor-logging'
49 )
50endif
51
Wludzik, Jozef596a9942021-01-27 12:28:59 +010052sdbusplus = dependency('sdbusplus', fallback: ['sdbusplus', 'sdbusplus_dep'])
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020053systemd = dependency('systemd')
54
Krzysztof Grobelny73da6902020-09-24 13:42:04 +020055if cpp.has_header('nlohmann/json.hpp')
56 nlohmann_json = declare_dependency()
57else
Wludzik, Jozef596a9942021-01-27 12:28:59 +010058 nlohmann_json = dependency('nlohmann_json',
59 fallback: ['nlohmann', 'nlohmann_json_dep'])
Krzysztof Grobelny73da6902020-09-24 13:42:04 +020060endif
61
Wludzik, Jozef503c1582020-12-11 14:48:01 +010062add_project_arguments(
63 '-DTELEMETRY_MAX_REPORTS=' + get_option('max-reports').to_string(),
Wludzik, Jozef596a9942021-01-27 12:28:59 +010064 '-DTELEMETRY_MAX_READING_PARAMS=' +
65 get_option('max-reading-parameters').to_string(),
Wludzik, Jozef503c1582020-12-11 14:48:01 +010066 '-DTELEMETRY_MIN_INTERVAL=' + get_option('min-interval').to_string(),
Wludzik, Jozef76833cb2020-12-21 14:42:41 +010067 '-DTELEMETRY_MAX_TRIGGERS=' + get_option('max-triggers').to_string(),
Karol Niczyj32859b62021-05-19 10:20:46 +020068 '-DTELEMETRY_MAX_REPORT_NAME_LENGTH=' +
69 get_option('max-report-name-length').to_string(),
Wludzik, Jozef503c1582020-12-11 14:48:01 +010070 language: 'cpp'
71)
72
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020073executable(
74 'telemetry',
75 [
Szymon Dompkef763c9e2021-03-12 09:19:22 +010076 'src/discrete_threshold.cpp',
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020077 'src/main.cpp',
Krzysztof Grobelnyc8e3a642020-10-23 12:29:16 +020078 'src/metric.cpp',
Wludzik, Jozef1477fe62021-01-02 11:56:10 +010079 'src/numeric_threshold.cpp',
Szymon Dompkef763c9e2021-03-12 09:19:22 +010080 'src/on_change_threshold.cpp',
Krzysztof Grobelny7f06f612020-09-24 13:42:10 +020081 'src/persistent_json_storage.cpp',
Wludzik, Jozefcb88cfd2020-09-28 16:38:57 +020082 'src/report.cpp',
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +020083 'src/report_factory.cpp',
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020084 'src/report_manager.cpp',
Krzysztof Grobelnyb5645942020-09-29 11:52:45 +020085 'src/sensor.cpp',
Krzysztof Grobelny7f06f612020-09-24 13:42:10 +020086 'src/sensor_cache.cpp',
Wludzik, Jozef76833cb2020-12-21 14:42:41 +010087 'src/trigger.cpp',
Wludzik, Jozefd960e1f2021-01-08 09:25:59 +010088 'src/trigger_actions.cpp',
Wludzik, Jozef76833cb2020-12-21 14:42:41 +010089 'src/trigger_factory.cpp',
90 'src/trigger_manager.cpp',
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020091 ],
92 dependencies: [
93 boost,
Krzysztof Grobelny73da6902020-09-24 13:42:04 +020094 nlohmann_json,
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020095 sdbusplus,
96 phosphor_logging,
97 ],
98 include_directories: 'src',
99 install: true,
100 install_dir: get_option('prefix') / get_option('bindir'),
101 pie: true,
102)
103
104configure_file(
105 input: 'xyz.openbmc_project.Telemetry.service.in',
106 output: 'xyz.openbmc_project.Telemetry.service',
107 configuration: {
108 'bindir': get_option('prefix') / get_option('bindir'),
109 },
110 install: true,
111 install_dir: systemd.get_pkgconfig_variable('systemdsystemunitdir'),
112)
Krzysztof Grobelny73da6902020-09-24 13:42:04 +0200113
114if get_option('buildtest')
115 subdir('tests')
116endif