xref: /openbmc/telemetry/meson.build (revision 493e62eb)
1project(
2    'Telemetry',
3    'cpp',
4    meson_version: '>=0.57.0',
5    default_options: [
6        'buildtype=debugoptimized',
7        'cpp_std=c++20',
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',
11        'warning_level=3',
12        'werror=true',
13        'b_lto=true',
14    ],
15    license: 'Apache-2.0',
16)
17
18summary({'Fast build with link-time optimizer disabled':
19            not get_option('b_lto')}, section: 'General')
20
21cpp = meson.get_compiler('cpp')
22add_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',
30        # TODO: Removed below arg after upgrade to Boost 1.75
31        '-DBOOST_ALLOW_DEPRECATED_HEADERS',
32        '-Wno-unused-parameter',
33    ]),
34    language: 'cpp'
35)
36
37boost = dependency(
38    'boost',
39    version: '>=1.74.0',
40    required: false,
41    modules: ['coroutine'])
42assert(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')
46
47phosphor_logging = dependency(
48    'phosphor-logging',
49    fallback: ['phosphor-logging', 'phosphor_logging_dep'],
50)
51
52sdbusplus = dependency('sdbusplus', fallback: ['sdbusplus', 'sdbusplus_dep'])
53systemd = dependency('systemd')
54
55if cpp.has_header('nlohmann/json.hpp')
56    nlohmann_json = declare_dependency()
57else
58    nlohmann_json = dependency('nlohmann_json',
59                               fallback: ['nlohmann', 'nlohmann_json_dep'])
60endif
61
62add_project_arguments(
63    '-DTELEMETRY_MAX_REPORTS=' + get_option('max-reports').to_string(),
64    '-DTELEMETRY_MAX_READING_PARAMS=' +
65        get_option('max-reading-parameters').to_string(),
66    '-DTELEMETRY_MIN_INTERVAL=' + get_option('min-interval').to_string(),
67    '-DTELEMETRY_MAX_TRIGGERS=' + get_option('max-triggers').to_string(),
68    '-DTELEMETRY_MAX_DBUS_PATH_LENGTH=' +
69        get_option('max-dbus-path-length').to_string(),
70    '-DTELEMETRY_MAX_APPEND_LIMIT=' +
71        get_option('max-append-limit').to_string(),
72    language: 'cpp'
73)
74
75executable(
76    'telemetry',
77    [
78        'src/discrete_threshold.cpp',
79        'src/main.cpp',
80        'src/metric.cpp',
81        'src/metrics/collection_data.cpp',
82        'src/metrics/collection_function.cpp',
83        'src/numeric_threshold.cpp',
84        'src/on_change_threshold.cpp',
85        'src/persistent_json_storage.cpp',
86        'src/report.cpp',
87        'src/report_factory.cpp',
88        'src/report_manager.cpp',
89        'src/sensor.cpp',
90        'src/sensor_cache.cpp',
91        'src/trigger.cpp',
92        'src/trigger_actions.cpp',
93        'src/trigger_factory.cpp',
94        'src/trigger_manager.cpp',
95        'src/types/readings.cpp',
96        'src/types/report_types.cpp',
97        'src/utils/conversion_trigger.cpp',
98        'src/utils/generate_id.cpp',
99        'src/utils/messanger_service.cpp',
100    ],
101    dependencies: [
102        boost,
103        nlohmann_json,
104        sdbusplus,
105        phosphor_logging,
106    ],
107    include_directories: 'src',
108    install: true,
109    install_dir: get_option('prefix') / get_option('bindir'),
110    pie: true,
111)
112
113configure_file(
114    input: 'xyz.openbmc_project.Telemetry.service.in',
115    output: 'xyz.openbmc_project.Telemetry.service',
116    configuration: {
117        'bindir': get_option('prefix') / get_option('bindir'),
118    },
119    install: true,
120    install_dir: systemd.get_variable(pkgconfig: 'systemdsystemunitdir'),
121)
122
123if get_option('buildtest')
124    subdir('tests')
125endif
126