Add initial meson.build and empty code

Add initial meson.build and make sure it generates the shared library.

Signed-off-by: Lei YU <yulei.sh@bytedance.com>
Change-Id: If04fcbeb4bcfeb67bb3654e15c17eb99352e97a3
diff --git a/src/meson.build b/src/meson.build
new file mode 100644
index 0000000..2a6010a
--- /dev/null
+++ b/src/meson.build
@@ -0,0 +1,13 @@
+src_inc = include_directories('.')
+
+shared_library(
+  'inspur-ipmi-oem',
+  'inspur_oem.cpp',
+  dependencies: [
+    phosphor_dbus_interfaces,
+    phosphor_logging,
+    libipmid,
+  ],
+  install: true,
+  install_dir: get_option('libdir') / 'ipmid-providers'
+  )