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', include_type: 'system') 45 46phosphor_logging_dep = dependency('phosphor-logging') 47nlohmann_json_dep = dependency('nlohmann_json', include_type: 'system') 48 49threads = dependency('threads') 50 51boost = dependency('boost', version: '>=1.79.0', include_type: 'system') 52 53uring = dependency('liburing', include_type: 'system') 54 55default_deps = [ 56 boost, 57 nlohmann_json_dep, 58 phosphor_logging_dep, 59 sdbusplus, 60 uring, 61] 62 63subdir('service_files') 64subdir('src') 65 66if not get_option('tests').disabled() 67 subdir('tests') 68endif 69