Link to libgpiod for ipmid to dlopen this .so file correctly

There is a dlopen error with the below error message,
and causes the ipmid service crashes, modify the link option to fix this issue:
MESSAGE=ERROR opening IPMI provider
ERROR=/usr/lib/ipmid-providers/libzinteloemcmds.so.0.1.0: undefined symbol: _ZN5gpiod12line_request15FLAG_ACTIVE_LOWE

Tested:
Ipmitool sensor list works

Signed-off-by: Yong Li <yong.b.li@linux.intel.com>
Change-Id: Ia51e92253c866dd5e16890a409974478343cbd60
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 42af35a..2bbf250 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -102,6 +102,7 @@
 target_link_libraries (zinteloemcmds -luserlayer)
 target_link_libraries (zinteloemcmds -lchannellayer)
 target_link_libraries (zinteloemcmds ${OPENSSL_CRYPTO_LIBRARY})
+target_link_libraries (zinteloemcmds gpiodcxx)
 
 install (TARGETS zinteloemcmds DESTINATION lib/ipmid-providers)
 option (INTEL_PFR_ENABLED "Intel PFR Enabled" OFF)