Jonathan Doman | 366546c | 2023-07-24 12:33:16 -0700 | [diff] [blame] | 1 | project( |
| 2 | 'smbios-mdr', |
| 3 | 'cpp', |
| 4 | version: '0.1', |
| 5 | meson_version: '>=1.1.1', |
| 6 | default_options: [ |
| 7 | 'cpp_std=c++23', |
| 8 | 'warning_level=3', |
| 9 | 'werror=true', |
| 10 | 'cpp_rtti=false' |
| 11 | ]) |
| 12 | |
| 13 | boost_args = [ |
| 14 | '-DBOOST_ALL_NO_LIB', |
| 15 | '-DBOOST_ASIO_DISABLE_THREADS', |
| 16 | ] |
| 17 | |
| 18 | root_inc = include_directories('include') |
| 19 | |
| 20 | boost_dep = dependency('boost') |
| 21 | |
| 22 | sdbusplus_dep = dependency('sdbusplus') |
| 23 | phosphor_dbus_interfaces_dep= dependency('phosphor-dbus-interfaces') |
| 24 | phosphor_logging_dep = dependency('phosphor-logging') |
| 25 | |
| 26 | subdir('src') |
| 27 | subdir('service_files') |