]> vaikene.ee Git - evaf/blobdiff - src/apps/PswGen/Generator/CMakeLists.txt
Ported to Qt5
[evaf] / src / apps / PswGen / Generator / CMakeLists.txt
index dbf88efb09d68f9391f751ceb564b94d6703664a..c4ca65fb543479ec63ae85e50c566069384ad9b5 100644 (file)
@@ -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)
 
@@ -21,19 +17,20 @@ set(SRCS
 
 # Header files for the meta-object compiler
 set(MOC_HDRS
-    igenerator.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)