Add in-tree OEM IPMI provider infrastructure
Change-Id: I341af91571b95f74e12def273c6cddf2b72c7884
Signed-off-by: Vernon Mauery <vernon.mauery@gmail.com>
diff --git a/oem/example/meson.build b/oem/example/meson.build
new file mode 100644
index 0000000..d21b62a
--- /dev/null
+++ b/oem/example/meson.build
@@ -0,0 +1,26 @@
+# example OEM library build
+
+example_oem_src = ['apphandler.cpp']
+
+example_oem_deps = [
+ boost,
+ crypto,
+ ipmid_dep,
+ nlohmann_json_dep,
+ phosphor_dbus_interfaces_dep,
+ phosphor_logging_dep,
+ sdbusplus_dep,
+ stdplus_dep,
+]
+
+
+example_oem_lib = library(
+ 'example-oem',
+ example_oem_src,
+ dependencies: example_oem_deps,
+ include_directories: [root_inc],
+ install: true,
+ install_dir: get_option('libdir') / 'ipmid-providers',
+ version: meson.project_version(),
+ override_options: ipmi_plugin_options,
+)