common: add entity manager interface
Define an EntityManager interface to fetch the serial port related
config or any device config from Entity Manager.
Change-Id: Ieeff4422903e3b4bcc3ce28cd493eecab5618f13
Signed-off-by: Jagpal Singh Gill <paligill@gmail.com>
diff --git a/common/meson.build b/common/meson.build
index 8b13789..cd17e78 100644
--- a/common/meson.build
+++ b/common/meson.build
@@ -1 +1,6 @@
-
+modbus_common_lib = static_library(
+ 'modbus_common_lib',
+ 'entity_manager_interface.cpp',
+ include_directories: ['.'],
+ dependencies: [default_deps],
+)