X-Git-Url: https://vaikene.ee/gitweb/highlight.css?a=blobdiff_plain;f=src%2Fmain%2FCLI%2FCMakeLists.txt;h=d86dcc51c47cb40bd43d93a466529b79f33f8dbf;hb=a81a943bee20df3c7eb34bafb3e3fe878facfe4e;hp=d6a5b14cb679368029eb45c0326743325f84d3f3;hpb=2ab8cd3d68a55773240c9424aa0e14d678fd2dbb;p=evaf diff --git a/src/main/CLI/CMakeLists.txt b/src/main/CLI/CMakeLists.txt index d6a5b14..d86dcc5 100644 --- a/src/main/CLI/CMakeLists.txt +++ b/src/main/CLI/CMakeLists.txt @@ -1,10 +1,6 @@ # Name of the target set(TARGET eVafCLI) -# Qt modules -set(QT_DONT_USE_QTGUI TRUE) -include(${QT_USE_FILE}) - # Include files include_directories(${eVaf_INCLUDE}) @@ -23,14 +19,16 @@ set(MOC_HDRS ) # Version info resource file for Windows builds -if(WIN32) +if(WIN32 AND NOT MINGW) set(SRCS ${SRCS} version.rc cli.rc) -endif(WIN32) +endif(WIN32 AND NOT MINGW) -qt4_wrap_cpp(MOC_SRCS ${MOC_HDRS}) +qt5_wrap_cpp(MOC_SRCS ${MOC_HDRS}) add_executable(${TARGET} ${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)