X-Git-Url: https://vaikene.ee/gitweb/highlight.css?a=blobdiff_plain;f=src%2Fapps%2FPswGen%2FStorage%2FCMakeLists.txt;h=8387080ad4b01d58f45626c8d7c8aca2d1816737;hb=4c0329c5c2690bde28212c89029015a5da4c7e34;hp=13722c39e4b49c8e1956d270bbf63eb9c3e8d034;hpb=4a856bc600d1819e01c797881e0591810737c2fd;p=evaf diff --git a/src/apps/PswGen/Storage/CMakeLists.txt b/src/apps/PswGen/Storage/CMakeLists.txt index 13722c3..8387080 100644 --- a/src/apps/PswGen/Storage/CMakeLists.txt +++ b/src/apps/PswGen/Storage/CMakeLists.txt @@ -1,11 +1,6 @@ # Name of the target set(TARGET PswStorage) -# Qt modules -set(QT_USE_QTSQL TRUE) -set(QT_DONT_USE_QTGUI TRUE) -include(${QT_USE_FILE}) - # Needed for exporting symbols add_definitions(-DPSWGEN_STORAGE_LIBRARY) @@ -17,7 +12,11 @@ set(eVaf_LIBRARIES CommonLib PluginsLib) # Source files set(SRCS + istorage.h + lib.h module.cpp + module.h + version.h ) # Header files for the meta-object compiler @@ -26,14 +25,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 Sql) + +target_link_libraries(${TARGET} ${eVaf_LIBRARIES}) install(TARGETS ${TARGET} DESTINATION bin)