# Name of the target set(TARGET CommonLib) # 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.h config.cpp config.h eventqueue.cpp eventqueue.h globals.cpp globals.h iapp.h iconfig.h ieventqueue.h ilogger.h inifile.h iprop.h iregistry.h libcommon.h logger.h prop.cpp prop.h app.cpp event.h event.cpp inifile_p.h inifile.cpp logger.cpp registry.cpp registry.h util.cpp util.h version.h ) # 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 AND NOT MINGW) set(SRCS ${SRCS} version.rc) endif(WIN32 AND NOT MINGW) qt5_wrap_cpp(MOC_SRCS ${MOC_HDRS}) add_library(${TARGET} SHARED ${SRCS} ${MOC_SRCS}) qt5_use_modules(${TARGET} Core) target_link_libraries(${TARGET} ${eVaf_LIBRARIES}) install(TARGETS ${TARGET} DESTINATION bin)