X-Git-Url: https://vaikene.ee/gitweb/highlight.css?a=blobdiff_plain;f=src%2Fapps%2FPswGen%2FGenerator%2FCMakeLists.txt;h=4224491e27f5bf4ba895f1c3b16fe54bd0d494ad;hb=HEAD;hp=ffaba79cdca32c57893c21033b871e77b18b2db5;hpb=473db85d79d6d89b7b8fe617346efa3e94c66cd9;p=evaf diff --git a/src/apps/PswGen/Generator/CMakeLists.txt b/src/apps/PswGen/Generator/CMakeLists.txt index ffaba79..4224491 100644 --- a/src/apps/PswGen/Generator/CMakeLists.txt +++ b/src/apps/PswGen/Generator/CMakeLists.txt @@ -1,10 +1,6 @@ # Name of the target set(TARGET PswGen) -# Qt modules -set(QT_DONT_USE_QTGUI TRUE) -include(${QT_USE_FILE}) - # Needed for exporting/importing symbols add_definitions(-DPSWGEN_GENERATOR_LIBRARY) @@ -16,24 +12,29 @@ set(eVaf_LIBRARIES CommonLib PluginsLib) # Source files set(SRCS - generator.cpp + igenerator.h + lib.h + module.cpp + module.h + version.h ) # Header files for the meta-object compiler set(MOC_HDRS - igenerator.h - generator.h + module.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) + +target_link_libraries(${TARGET} ${eVaf_LIBRARIES}) install(TARGETS ${TARGET} DESTINATION bin)