X-Git-Url: https://vaikene.ee/gitweb/gitweb.cgi?a=blobdiff_plain;f=src%2Fmain%2FGUI%2FCMakeLists.txt;h=cfb011c9750947b4f8f39b75f33ecfb08aa71697;hb=0c61450fcffcb36a6e23ca5b083c26543d956084;hp=c9ba20e0b2dcf1dd33e8ebd1dc973a15c3743ee5;hpb=4d81227da330c21c7aa0badc88bd5ad4467067fb;p=evaf diff --git a/src/main/GUI/CMakeLists.txt b/src/main/GUI/CMakeLists.txt index c9ba20e..cfb011c 100644 --- a/src/main/GUI/CMakeLists.txt +++ b/src/main/GUI/CMakeLists.txt @@ -1,15 +1,11 @@ # Name of the target set(TARGET eVafGUI) -# Qt modules -set(QT_USE_QTMAIN TRUE) -include(${QT_USE_FILE}) - # Include files include_directories(${eVaf_INCLUDE}) # Required eVaf libraries -set(eVaf_LIBRARIES CommonLib) +set(eVaf_LIBRARIES CommonLib PluginsLib) # Source files set(SRCS @@ -38,16 +34,18 @@ set(RCCS ) # Version info resource file for Windows builds -if(WIN32) +if(WIN32 AND NOT MINGW) set(SRCS ${SRCS} version.rc gui.rc) -endif(WIN32) +endif(WIN32 AND NOT MINGW) -qt4_add_resources(RCC_SRCS ${RCCS}) +qt5_add_resources(RCC_SRCS ${RCCS}) -qt4_wrap_cpp(MOC_SRCS ${MOC_HDRS}) +qt5_wrap_cpp(MOC_SRCS ${MOC_HDRS}) add_executable(${TARGET} WIN32 ${SRCS} ${MOC_SRCS} ${RCC_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)