Prithvi Pai | 6b580c7 | 2025-06-05 11:13:34 +0530 | [diff] [blame] | 1 | # nvidia OEM library build |
| 2 | |
| 3 | nvidia_oem_src = ['biosconfigcommands.cpp'] |
| 4 | |
| 5 | nvidia_oem_deps = [ |
| 6 | boost, |
| 7 | crypto, |
| 8 | ipmid_dep, |
| 9 | nlohmann_json_dep, |
| 10 | phosphor_dbus_interfaces_dep, |
| 11 | phosphor_logging_dep, |
| 12 | sdbusplus_dep, |
| 13 | stdplus_dep, |
| 14 | ] |
| 15 | |
| 16 | |
| 17 | nvidia_ipmi_oem = library( |
| 18 | 'nvidia_ipmi_oem', |
| 19 | nvidia_oem_src, |
| 20 | dependencies: nvidia_oem_deps, |
| 21 | include_directories: [root_inc], |
| 22 | install: true, |
| 23 | install_dir: get_option('libdir') / 'ipmid-providers', |
| 24 | version: meson.project_version(), |
| 25 | override_options: ipmi_plugin_options, |
| 26 | ) |