binarystore: Include main.cpp in libbinarystore.so
main.cpp is required to register the ipmi handlers.
Without main.cpp, the phosphor-ipmi-host does not pick up the register
for the binarystore.
Tested:
```
$ systemctl restart phosphor-ipmi-host
$ journalctl | grep "Loading from config with"
ipmid[4500]: Loading from config with
```
Change-Id: Ia84b48c9680703528d26bf70c27f5799439a2fb6
Signed-off-by: Willy Tu <wltu@google.com>
diff --git a/src/meson.build b/src/meson.build
index a8917ac..7fec5ed 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -13,6 +13,7 @@
binarystoreblob_lib = library(
'binarystore',
+ 'main.cpp',
'binarystore.cpp',
'sys.cpp',
'sys_file_impl.cpp',