X-Git-Url: https://vaikene.ee/gitweb/pswgen11.html?a=blobdiff_plain;f=src%2Flibs%2FGui%2FCMakeLists.txt;h=e973a0adb1392f2abc03c22b1f0df8a20fc70486;hb=4c0329c5c2690bde28212c89029015a5da4c7e34;hp=fab0577247c9ae114afdc4852183a84f18c8cfe3;hpb=5748bd7fdfa26ef2dd56735f2b7f77ad02c16ae0;p=evaf diff --git a/src/libs/Gui/CMakeLists.txt b/src/libs/Gui/CMakeLists.txt index fab0577..e973a0a 100644 --- a/src/libs/Gui/CMakeLists.txt +++ b/src/libs/Gui/CMakeLists.txt @@ -1,9 +1,6 @@ # Name of the target set(TARGET GuiLib) -# Qt modules -include(${QT_USE_FILE}) - # Needed for exporting/importing symbols add_definitions(-DGUI_LIBRARY) @@ -15,23 +12,28 @@ set(eVaf_LIBRARIES) # Source files set(SRCS - window.cpp + libgui.h + panel.cpp + panel.h + version.h ) # Header files for the meta-object compiler set(MOC_HDRS - window.h + panel.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}) +qt5_use_modules(${TARGET} Core Widgets) + target_link_libraries(${TARGET} ${QT_LIBRARIES} ${eVaf_LIBRARIES}) install(TARGETS ${TARGET} DESTINATION bin)