xref: /openbmc/dbus-sensors/meson.build (revision 771e5292)
1project(
2    'dbus-sensors',
3    'cpp',
4    default_options: ['warning_level=3', 'werror=true', 'cpp_std=c++20'],
5    license: 'Apache-2.0',
6    version: '0.1',
7    meson_version: '>=1.1',
8)
9
10# Enable io_uring for all daemons with below flags.
11#    '-DBOOST_ASIO_HAS_IO_URING',
12#    '-DBOOST_ASIO_DISABLE_EPOLL',
13#    '-DBOOST_ASIO_USE_TS_EXECUTOR_AS_DEFAULT',
14# Note, there is currently an issue with CPUSensor when used in
15# conjunction with io_uring. So it has not been changed to use
16# random file access. But we'd like to enable it for all daemons.
17# https://github.com/openbmc/dbus-sensors/issues/19
18
19add_project_arguments(
20    '-Wno-psabi',
21    '-Wuninitialized',
22    '-DBOOST_SYSTEM_NO_DEPRECATED',
23    '-DBOOST_ASIO_NO_DEPRECATED',
24    '-DBOOST_ERROR_CODE_HEADER_ONLY',
25    '-DBOOST_NO_RTTI',
26    '-DBOOST_NO_TYPEID',
27    '-DBOOST_ALL_NO_LIB',
28    '-DBOOST_ASIO_DISABLE_THREADS',
29    '-DBOOST_ALLOW_DEPRECATED_HEADERS',
30    '-DBOOST_ASIO_HAS_IO_URING',
31    '-DBOOST_ASIO_DISABLE_EPOLL',
32    '-DBOOST_ASIO_USE_TS_EXECUTOR_AS_DEFAULT',
33    language: 'cpp',
34)
35
36gpiodcxx = dependency(
37    'libgpiodcxx',
38    default_options: ['bindings=cxx'],
39)
40
41# i2c-tools doesn't ship a pkg-config file for libi2c
42i2c = meson.get_compiler('cpp').find_library('i2c')
43
44sdbusplus = dependency('sdbusplus', required: false, include_type: 'system')
45if not sdbusplus.found()
46    sdbusplus_proj = subproject('sdbusplus', required: true)
47    sdbusplus = sdbusplus_proj.get_variable('sdbusplus_dep')
48    sdbusplus = sdbusplus.as_system('system')
49endif
50
51phosphor_logging_dep = dependency('phosphor-logging')
52nlohmann_json_dep = dependency('nlohmann_json', include_type: 'system')
53
54systemd = dependency('systemd')
55systemd_system_unit_dir = systemd.get_variable(
56    'systemdsystemunitdir',
57    pkgconfig_define: ['prefix', get_option('prefix')],
58)
59threads = dependency('threads')
60
61boost = dependency(
62    'boost',
63    version: '>=1.79.0',
64    required: false,
65    include_type: 'system',
66)
67if not boost.found()
68    subproject('boost', required: false)
69    boost_inc = include_directories(
70        'subprojects/boost_1_79_0/',
71        is_system: true,
72    )
73    boost = declare_dependency(include_directories: boost_inc)
74    boost = boost.as_system('system')
75endif
76
77uring = dependency('liburing', required: false, include_type: 'system')
78if not uring.found()
79    uring_proj = subproject('liburing', required: true)
80    uring = uring_proj.get_variable('uring')
81    uring = uring.as_system('system')
82endif
83
84default_deps = [
85    boost,
86    nlohmann_json_dep,
87    phosphor_logging_dep,
88    sdbusplus,
89    uring,
90]
91
92subdir('service_files')
93subdir('src')
94
95if not get_option('tests').disabled()
96    subdir('tests')
97endif
98