Vernon Mauery | d0b99b1 | 2025-05-27 10:43:58 -0700 | [diff] [blame^] | 1 | # example OEM library build |
| 2 | |
| 3 | example_oem_src = ['apphandler.cpp'] |
| 4 | |
| 5 | example_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 | example_oem_lib = library( |
| 18 | 'example-oem', |
| 19 | example_oem_src, |
| 20 | dependencies: example_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 | ) |