X-Git-Url: https://vaikene.ee/gitweb/gitweb.cgi?a=blobdiff_plain;f=src%2Fapps%2FPswGen%2FCLI%2FCMakeLists.txt;h=8140b4c43c34bd23966a62260a48f279ff921337;hb=HEAD;hp=63f57a77e2dfe8ed28f63c31e2a4c6ba34e01ba4;hpb=cdc02ee6da9c883125d5cff563bdcfcc0bf2b7b8;p=evaf diff --git a/src/apps/PswGen/CLI/CMakeLists.txt b/src/apps/PswGen/CLI/CMakeLists.txt index 63f57a7..8140b4c 100644 --- a/src/apps/PswGen/CLI/CMakeLists.txt +++ b/src/apps/PswGen/CLI/CMakeLists.txt @@ -1,10 +1,6 @@ # Name of the target set(TARGET PswCli) -# Qt modules -set(QT_DONT_USE_QTGUI TRUE) -include(${QT_USE_FILE}) - # Include files include_directories(${eVaf_INCLUDE}) @@ -14,6 +10,9 @@ set(eVaf_LIBRARIES CommonLib PluginsLib) # Source files set(SRCS cli.cpp + cli.h + lib.h + version.h ) # Header files for the meta-object compiler @@ -22,14 +21,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) + +target_link_libraries(${TARGET} ${eVaf_LIBRARIES}) install(TARGETS ${TARGET} DESTINATION bin)