include_directories(.) add_library(openlmicommon SHARED globals.c ) set_target_properties(openlmicommon PROPERTIES SOVERSION 0.0.1) install(TARGETS openlmicommon DESTINATION lib${LIB_SUFFIX}) install(FILES globals.h DESTINATION include/openlmi) if (WITH-FAN) add_subdirectory(fan) endif (WITH-FAN) if (WITH-POWER) add_subdirectory(power) endif (WITH-POWER) if (WITH-SERVICE) add_subdirectory(service) endif (WITH-SERVICE) if (WITH-ACCOUNT) add_subdirectory(account) endif (WITH-ACCOUNT)