X-Git-Url: https://vaikene.ee/gitweb/highlight.css?a=blobdiff_plain;f=src%2Fplugins%2FSdiWindow%2FCMakeLists.txt;h=9d20998b90b3617fb29fd60739ba8e93dcc47774;hb=4c0329c5c2690bde28212c89029015a5da4c7e34;hp=cd0a8c01829a59f639edbb3c4c398177bacb4c39;hpb=2ed96066b8600d07d9ada5dc44e9768fe56e633c;p=evaf diff --git a/src/plugins/SdiWindow/CMakeLists.txt b/src/plugins/SdiWindow/CMakeLists.txt index cd0a8c0..9d20998 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) @@ -16,7 +13,12 @@ set(eVaf_LIBRARIES CommonLib PluginsLib GuiLib) # Source files set(SRCS factory.cpp + factory.h + isdiwindow.h + libsdiwindow.h sdiwindow.cpp + sdiwindow.h + version.h ) # Header files for the meta-object compiler @@ -30,10 +32,12 @@ if(WIN32 AND NOT MINGW) set(SRCS ${SRCS} version.rc) 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)