# Name of the target set(TARGET PluginsLib) # Needed for exporting/importing symbols add_definitions(-DPLUGINS_LIBRARY) # Include files include_directories(${eVaf_INCLUDE}) # Required eVaf libraries set(eVaf_LIBRARIES CommonLib) # Source files set(SRCS pluginmanager.cpp ) # Header files for the meta-object compiler set(MOC_HDRS iplugin.h ipluginfactory.h pluginmanager.h pluginmanager_p.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 Xml) target_link_libraries(${TARGET} ${eVaf_LIBRARIES}) install(TARGETS ${TARGET} DESTINATION bin)