Krzysztof Grobelny | 64b75a5 | 2020-09-18 10:17:16 +0200 | [diff] [blame] | 1 | project( |
| 2 | 'Telemetry', |
| 3 | 'cpp', |
Wludzik, Jozef | 0e29f43 | 2020-11-17 08:22:33 +0100 | [diff] [blame] | 4 | meson_version: '>=0.54.3', |
Krzysztof Grobelny | 64b75a5 | 2020-09-18 10:17:16 +0200 | [diff] [blame] | 5 | default_options: [ |
| 6 | 'buildtype=debugoptimized', |
| 7 | 'cpp_std=c++17', |
Wludzik, Jozef | a4bf740 | 2020-10-21 15:08:58 +0200 | [diff] [blame] | 8 | # 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 Grobelny | 64b75a5 | 2020-09-18 10:17:16 +0200 | [diff] [blame] | 11 | 'warning_level=3', |
| 12 | 'werror=true', |
| 13 | 'b_lto=true', |
| 14 | ], |
| 15 | license: 'Apache-2.0', |
| 16 | ) |
| 17 | |
Lukasz Kazmierczak | a74e44f | 2021-07-23 15:02:20 +0200 | [diff] [blame] | 18 | summary({'Fast build with link-time optimizer disabled': |
| 19 | not get_option('b_lto')}, section: 'General') |
| 20 | |
Krzysztof Grobelny | 64b75a5 | 2020-09-18 10:17:16 +0200 | [diff] [blame] | 21 | cpp = meson.get_compiler('cpp') |
| 22 | add_project_arguments( |
| 23 | cpp.get_supported_arguments([ |
| 24 | '-DBOOST_ASIO_DISABLE_THREADS', |
| 25 | '-DBOOST_ALL_NO_LIB', |
| 26 | '-DBOOST_SYSTEM_NO_DEPRECATED', |
| 27 | '-DBOOST_ASIO_NO_DEPRECATED', |
| 28 | '-DBOOST_NO_RTTI', |
| 29 | '-DBOOST_NO_TYPEID', |
Wludzik, Jozef | 596a994 | 2021-01-27 12:28:59 +0100 | [diff] [blame] | 30 | # TODO: Removed below arg after upgrade to Boost 1.75 |
| 31 | '-DBOOST_ALLOW_DEPRECATED_HEADERS', |
Krzysztof Grobelny | 64b75a5 | 2020-09-18 10:17:16 +0200 | [diff] [blame] | 32 | '-Wno-unused-parameter', |
| 33 | ]), |
| 34 | language: 'cpp' |
| 35 | ) |
| 36 | |
Krzysztof Grobelny | b564594 | 2020-09-29 11:52:45 +0200 | [diff] [blame] | 37 | boost = dependency( |
Wludzik, Jozef | 596a994 | 2021-01-27 12:28:59 +0100 | [diff] [blame] | 38 | 'boost', |
| 39 | version: '>=1.74.0', |
| 40 | required: false, |
| 41 | modules: ['coroutine']) |
| 42 | assert(boost.found(), |
| 43 | 'Missing Boost 1.74.0 or higher, as WA you can set BOOST_ROOT ' + |
| 44 | 'environemt to point at boost build. To build a boost you can use ' + |
| 45 | 'script ./scripts/boost_build_1.74.0.sh') |
Krzysztof Grobelny | 64b75a5 | 2020-09-18 10:17:16 +0200 | [diff] [blame] | 46 | |
| 47 | phosphor_logging = dependency('phosphor-logging', required: false) |
| 48 | if not phosphor_logging.found() |
| 49 | subproject('phosphor-logging', required: false) |
| 50 | phosphor_logging = declare_dependency( |
| 51 | include_directories: 'subprojects/phosphor-logging' |
| 52 | ) |
| 53 | endif |
| 54 | |
Wludzik, Jozef | 596a994 | 2021-01-27 12:28:59 +0100 | [diff] [blame] | 55 | sdbusplus = dependency('sdbusplus', fallback: ['sdbusplus', 'sdbusplus_dep']) |
Krzysztof Grobelny | 64b75a5 | 2020-09-18 10:17:16 +0200 | [diff] [blame] | 56 | systemd = dependency('systemd') |
| 57 | |
Krzysztof Grobelny | 73da690 | 2020-09-24 13:42:04 +0200 | [diff] [blame] | 58 | if cpp.has_header('nlohmann/json.hpp') |
| 59 | nlohmann_json = declare_dependency() |
| 60 | else |
Wludzik, Jozef | 596a994 | 2021-01-27 12:28:59 +0100 | [diff] [blame] | 61 | nlohmann_json = dependency('nlohmann_json', |
| 62 | fallback: ['nlohmann', 'nlohmann_json_dep']) |
Krzysztof Grobelny | 73da690 | 2020-09-24 13:42:04 +0200 | [diff] [blame] | 63 | endif |
| 64 | |
Wludzik, Jozef | 503c158 | 2020-12-11 14:48:01 +0100 | [diff] [blame] | 65 | add_project_arguments( |
| 66 | '-DTELEMETRY_MAX_REPORTS=' + get_option('max-reports').to_string(), |
Wludzik, Jozef | 596a994 | 2021-01-27 12:28:59 +0100 | [diff] [blame] | 67 | '-DTELEMETRY_MAX_READING_PARAMS=' + |
| 68 | get_option('max-reading-parameters').to_string(), |
Wludzik, Jozef | 503c158 | 2020-12-11 14:48:01 +0100 | [diff] [blame] | 69 | '-DTELEMETRY_MIN_INTERVAL=' + get_option('min-interval').to_string(), |
Wludzik, Jozef | 76833cb | 2020-12-21 14:42:41 +0100 | [diff] [blame] | 70 | '-DTELEMETRY_MAX_TRIGGERS=' + get_option('max-triggers').to_string(), |
Karol Niczyj | 32859b6 | 2021-05-19 10:20:46 +0200 | [diff] [blame] | 71 | '-DTELEMETRY_MAX_REPORT_NAME_LENGTH=' + |
| 72 | get_option('max-report-name-length').to_string(), |
Wludzik, Jozef | 503c158 | 2020-12-11 14:48:01 +0100 | [diff] [blame] | 73 | language: 'cpp' |
| 74 | ) |
| 75 | |
Krzysztof Grobelny | 64b75a5 | 2020-09-18 10:17:16 +0200 | [diff] [blame] | 76 | executable( |
| 77 | 'telemetry', |
| 78 | [ |
Krzysztof Grobelny | 8069771 | 2021-03-04 09:49:27 +0000 | [diff] [blame] | 79 | 'src/details/collection_function.cpp', |
Szymon Dompke | f763c9e | 2021-03-12 09:19:22 +0100 | [diff] [blame] | 80 | 'src/discrete_threshold.cpp', |
Krzysztof Grobelny | 64b75a5 | 2020-09-18 10:17:16 +0200 | [diff] [blame] | 81 | 'src/main.cpp', |
Krzysztof Grobelny | c8e3a64 | 2020-10-23 12:29:16 +0200 | [diff] [blame] | 82 | 'src/metric.cpp', |
Wludzik, Jozef | 1477fe6 | 2021-01-02 11:56:10 +0100 | [diff] [blame] | 83 | 'src/numeric_threshold.cpp', |
Szymon Dompke | f763c9e | 2021-03-12 09:19:22 +0100 | [diff] [blame] | 84 | 'src/on_change_threshold.cpp', |
Krzysztof Grobelny | 7f06f61 | 2020-09-24 13:42:10 +0200 | [diff] [blame] | 85 | 'src/persistent_json_storage.cpp', |
Wludzik, Jozef | cb88cfd | 2020-09-28 16:38:57 +0200 | [diff] [blame] | 86 | 'src/report.cpp', |
Wludzik, Jozef | 2f9f9b8 | 2020-10-13 09:07:45 +0200 | [diff] [blame] | 87 | 'src/report_factory.cpp', |
Krzysztof Grobelny | 64b75a5 | 2020-09-18 10:17:16 +0200 | [diff] [blame] | 88 | 'src/report_manager.cpp', |
Krzysztof Grobelny | b564594 | 2020-09-29 11:52:45 +0200 | [diff] [blame] | 89 | 'src/sensor.cpp', |
Krzysztof Grobelny | 7f06f61 | 2020-09-24 13:42:10 +0200 | [diff] [blame] | 90 | 'src/sensor_cache.cpp', |
Wludzik, Jozef | 76833cb | 2020-12-21 14:42:41 +0100 | [diff] [blame] | 91 | 'src/trigger.cpp', |
Wludzik, Jozef | d960e1f | 2021-01-08 09:25:59 +0100 | [diff] [blame] | 92 | 'src/trigger_actions.cpp', |
Wludzik, Jozef | 76833cb | 2020-12-21 14:42:41 +0100 | [diff] [blame] | 93 | 'src/trigger_factory.cpp', |
| 94 | 'src/trigger_manager.cpp', |
Krzysztof Grobelny | dcc4e19 | 2021-03-08 09:09:34 +0000 | [diff] [blame] | 95 | 'src/types/report_types.cpp', |
Cezary Zwolak | 4416fce | 2021-03-17 03:21:06 +0100 | [diff] [blame] | 96 | 'src/utils/conversion_trigger.cpp', |
Krzysztof Grobelny | 64b75a5 | 2020-09-18 10:17:16 +0200 | [diff] [blame] | 97 | ], |
| 98 | dependencies: [ |
| 99 | boost, |
Krzysztof Grobelny | 73da690 | 2020-09-24 13:42:04 +0200 | [diff] [blame] | 100 | nlohmann_json, |
Krzysztof Grobelny | 64b75a5 | 2020-09-18 10:17:16 +0200 | [diff] [blame] | 101 | sdbusplus, |
| 102 | phosphor_logging, |
| 103 | ], |
| 104 | include_directories: 'src', |
| 105 | install: true, |
| 106 | install_dir: get_option('prefix') / get_option('bindir'), |
| 107 | pie: true, |
| 108 | ) |
| 109 | |
| 110 | configure_file( |
| 111 | input: 'xyz.openbmc_project.Telemetry.service.in', |
| 112 | output: 'xyz.openbmc_project.Telemetry.service', |
| 113 | configuration: { |
| 114 | 'bindir': get_option('prefix') / get_option('bindir'), |
| 115 | }, |
| 116 | install: true, |
| 117 | install_dir: systemd.get_pkgconfig_variable('systemdsystemunitdir'), |
| 118 | ) |
Krzysztof Grobelny | 73da690 | 2020-09-24 13:42:04 +0200 | [diff] [blame] | 119 | |
| 120 | if get_option('buildtest') |
| 121 | subdir('tests') |
| 122 | endif |