# Name of the target set(TARGET CommonLib) # Qt modules set(QT_DONT_USE_QTGUI TRUE) include(${QT_USE_FILE}) # Needed for exporting/importing symbols add_definitions(-DCOMMON_LIBRARY) # Include files include_directories(${eVaf_INCLUDE}) # Required eVaf libraries set(eVaf_LIBRARIES) # Source files set(SRCS app.cpp event.cpp eventqueue.cpp globals.cpp logger.cpp registry.cpp util.cpp inifile.cpp config.cpp prop.cpp ) # Header files for the meta-object compiler set(MOC_HDRS iapp.h ieventqueue.h ilogger.h iregistry.h iconfig.h iprop.h app.h eventqueue.h logger.h registry.h config.h prop.h ) # Version info resource file for Windows builds if(WIN32) set(SRCS ${SRCS} version.rc) endif(WIN32) qt4_wrap_cpp(MOC_SRCS ${MOC_HDRS}) add_library(${TARGET} SHARED ${SRCS} ${MOC_SRCS}) target_link_libraries(${TARGET} ${QT_LIBRARIES} ${eVaf_LIBRARIES}) install(TARGETS ${TARGET} DESTINATION bin)