X-Git-Url: https://vaikene.ee/gitweb/highlight.css?a=blobdiff_plain;f=src%2Fplugins%2FSdiWindow%2FCMakeLists.txt;h=75f9ce79085cf78b8a3b3f467594db1c5cc81dd2;hb=a81a943bee20df3c7eb34bafb3e3fe878facfe4e;hp=9edf476798b7378e53b809f735835968e18d263f;hpb=06f9c5336ba8a2200b68f636520707693eb5ada7;p=evaf diff --git a/src/plugins/SdiWindow/CMakeLists.txt b/src/plugins/SdiWindow/CMakeLists.txt index 9edf476..75f9ce7 100644 --- a/src/plugins/SdiWindow/CMakeLists.txt +++ b/src/plugins/SdiWindow/CMakeLists.txt @@ -1,9 +1,6 @@ # Name of the target set(TARGET SdiWindow) -# Qt modules -include(${QT_USE_FILE}) - # Needed for exporting/importing symbols add_definitions(-DSDIWINDOW_LIBRARY) @@ -11,7 +8,7 @@ add_definitions(-DSDIWINDOW_LIBRARY) include_directories(${eVaf_INCLUDE}) # Required eVaf libraries -set(eVaf_LIBRARIES CommonLib PluginsLib) +set(eVaf_LIBRARIES CommonLib PluginsLib GuiLib) # Source files set(SRCS @@ -22,19 +19,20 @@ set(SRCS # Header files for the meta-object compiler set(MOC_HDRS factory.h - isdiwindow.h sdiwindow.h ) # Version info resource file for Windows builds -if(WIN32) +if(WIN32 AND NOT MINGW) set(SRCS ${SRCS} version.rc) -endif(WIN32) +endif(WIN32 AND NOT MINGW) -qt4_wrap_cpp(MOC_SRCS ${MOC_HDRS}) +qt5_wrap_cpp(MOC_SRCS ${MOC_HDRS}) add_library(${TARGET} SHARED ${SRCS} ${MOC_SRCS}) -target_link_libraries(${TARGET} ${QT_LIBRARIES} ${eVaf_LIBRARIES}) +qt5_use_modules(${TARGET} Core Widgets Xml) + +target_link_libraries(${TARGET} ${eVaf_LIBRARIES}) install(TARGETS ${TARGET} DESTINATION bin)