soft-off: Add pldm host soft off requester application.

Since the phosphor-softpoweroff is too tied up to IPMI, we need to
implement a new pldm host soft off requester application in parallel in
the pldm repo.

Signed-off-by: George Liu <liuxiwei@inspur.com>
Change-Id: I47534bb25c976a0004a1cd9f07d7590e605ce243
Signed-off-by: Chicago Duan <duanzhijia01@inspur.com>
diff --git a/softoff/meson.build b/softoff/meson.build
new file mode 100644
index 0000000..09c9d2c
--- /dev/null
+++ b/softoff/meson.build
@@ -0,0 +1,9 @@
+deps = [ libpldm ]
+
+source = ['main.cpp']
+
+executable('pldm-softpoweroff',source,
+           implicit_include_directories: false,
+           dependencies: deps,
+           install: true,
+           install_dir: get_option('bindir'))