Lei YU | 6505e9d | 2020-09-21 17:34:32 +0800 | [diff] [blame] | 1 | project( |
2 | 'inspur-ipmi-oem', | ||||
3 | 'cpp', | ||||
4 | default_options: [ | ||||
5 | 'warning_level=3', | ||||
6 | 'werror=true', | ||||
7 | 'cpp_std=c++17', | ||||
8 | 'prefix=/usr', | ||||
9 | 'b_lundef=false', | ||||
10 | 'buildtype=debugoptimized', | ||||
11 | ], | ||||
12 | license: 'Apache-2.0', | ||||
13 | version: '1.0', | ||||
14 | meson_version: '>=0.49.0', | ||||
15 | ) | ||||
16 | |||||
17 | phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces') | ||||
18 | phosphor_logging = dependency('phosphor-logging') | ||||
19 | libipmid = dependency('libipmid') | ||||
20 | |||||
21 | subdir('src') |