X-Git-Url: https://vaikene.ee/gitweb/gitweb.cgi?a=blobdiff_plain;f=src%2Fmain%2FCLI%2FCMakeLists.txt;h=d86dcc51c47cb40bd43d93a466529b79f33f8dbf;hb=HEAD;hp=a3983a6fb3e45e982329054a1af202f4ac903ca9;hpb=2ed96066b8600d07d9ada5dc44e9768fe56e633c;p=evaf diff --git a/src/main/CLI/CMakeLists.txt b/src/main/CLI/CMakeLists.txt index a3983a6..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}) @@ -27,10 +23,12 @@ if(WIN32 AND NOT MINGW) set(SRCS ${SRCS} version.rc cli.rc) 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)