X-Git-Url: https://vaikene.ee/gitweb/pswgen11.html?a=blobdiff_plain;f=src%2Fapps%2FPswGen%2FGUI%2FCMakeLists.txt;h=89e947384745249b26cf59448576b59b4ed6799b;hb=a81a943bee20df3c7eb34bafb3e3fe878facfe4e;hp=060625bea3be6402d0aa3a2fc3ebcebf43fb5851;hpb=a1941ef19ec631bf25c883c541f6841f8e2d7252;p=evaf diff --git a/src/apps/PswGen/GUI/CMakeLists.txt b/src/apps/PswGen/GUI/CMakeLists.txt index 060625b..89e9473 100644 --- a/src/apps/PswGen/GUI/CMakeLists.txt +++ b/src/apps/PswGen/GUI/CMakeLists.txt @@ -1,14 +1,11 @@ # Name of the target set(TARGET PswGui) -# Qt modules -include(${QT_USE_FILE}) - # Include files include_directories(${eVaf_INCLUDE}) # Required eVaf libraries -set(eVaf_LIBRARIES CommonLib PluginsLib SdiWindow) +set(eVaf_LIBRARIES CommonLib PluginsLib GuiLib) # Source files set(SRCS @@ -21,14 +18,16 @@ set(MOC_HDRS ) # 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) + +target_link_libraries(${TARGET} ${eVaf_LIBRARIES}) install(TARGETS ${TARGET} DESTINATION bin)