blob: d21b62aa84b6aaac79d6f10e1f1970070d110961 [file] [log] [blame]
Vernon Maueryd0b99b12025-05-27 10:43:58 -07001# example OEM library build
2
3example_oem_src = ['apphandler.cpp']
4
5example_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
17example_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)