# Name of the target set(TARGET PswStorage) # Qt modules set(QT_USE_QTSQL TRUE) set(QT_DONT_USE_QTGUI TRUE) include(${QT_USE_FILE}) # Needed for exporting symbols add_definitions(-DPSWGEN_STORAGE_LIBRARY) # Include files include_directories(${eVaf_INCLUDE}) # Required eVaf libraries set(eVaf_LIBRARIES CommonLib PluginsLib) # Source files set(SRCS module.cpp ) # Header files for the meta-object compiler set(MOC_HDRS module.h ) # Version info resource file for Windows builds if(WIN32 AND NOT MINGW) set(SRCS ${SRCS} version.rc) endif(WIN32 AND NOT MINGW) 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)