Add Intel-specific IPMI FRU commands

Includes commands that are required to support the 'ipmitool
fru print' command.

Change-Id: If7768de1441cc620ad6db4c99c4254305cf5bbbc
Signed-off-by: Jason M. Bills <jason.m.bills@linux.intel.com>
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 4362cc7..eb4a366 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -95,4 +95,12 @@
 target_link_libraries (sensorcommands ${CMAKE_THREAD_LIBS_INIT})
 target_link_libraries (sensorcommands sdbusplus)
 
-install (TARGETS oemcmds sensorcommands DESTINATION lib/ipmid-providers)
+add_library (zstoragecommands SHARED src/storagecommands.cpp)
+set_target_properties (zstoragecommands PROPERTIES VERSION "0.1.0")
+set_target_properties (zstoragecommands PROPERTIES SOVERSION "0")
+target_link_libraries (zstoragecommands ${CMAKE_THREAD_LIBS_INIT})
+
+install (
+    TARGETS oemcmds sensorcommands zstoragecommands
+    DESTINATION lib/ipmid-providers
+)