From aa965ff7256bbf0dcb279ad90697c3ed9f56c203 Mon Sep 17 00:00:00 2001 From: Martin Kleusberg Date: Tue, 18 Oct 2016 18:33:59 +0200 Subject: [PATCH] Fix last commit Also drop more Qt4 code in order to achieve this. --- libs/qcustomplot-source/CMakeLists.txt | 21 ++++----------------- libs/qhexedit/CMakeLists.txt | 21 ++++----------------- 2 files changed, 8 insertions(+), 34 deletions(-) diff --git a/libs/qcustomplot-source/CMakeLists.txt b/libs/qcustomplot-source/CMakeLists.txt index c60eecce..4b6fc04e 100644 --- a/libs/qcustomplot-source/CMakeLists.txt +++ b/libs/qcustomplot-source/CMakeLists.txt @@ -1,14 +1,8 @@ cmake_minimum_required(VERSION 2.8.7) -if(USE_QT5) - set(CMAKE_AUTOMOC ON) - set(CMAKE_INCLUDE_CURRENT_DIR ON) - find_package(Qt5Widgets REQUIRED) -else() - find_package(Qt4 COMPONENTS QtCore QtGui REQUIRED) - include("${QT_USE_FILE}") - add_definitions(${QT_DEFINITIONS}) -endif() +set(CMAKE_AUTOMOC ON) +set(CMAKE_INCLUDE_CURRENT_DIR ON) +find_package(Qt5Widgets REQUIRED) set(QCUSTOMPLOT_SRC qcustomplot.cpp @@ -21,13 +15,6 @@ set(QCUSTOMPLOT_MOC_HDR qcustomplot.h ) -if(NOT USE_QT5) - QT4_WRAP_CPP(QCUSTOMPLOT_MOC ${QCUSTOMPLOT_MOC_HDR}) -endif() - add_library(qcustomplot ${QCUSTOMPLOT_SRC} ${QCUSTOMPLOT_HDR} ${QCUSTOMPLOT_MOC}) -if(USE_QT5) - qt5_use_modules(qcustomplot Widgets PrintSupport) -endif() - +qt5_use_modules(qcustomplot Widgets PrintSupport) diff --git a/libs/qhexedit/CMakeLists.txt b/libs/qhexedit/CMakeLists.txt index fdfefea7..885d5494 100644 --- a/libs/qhexedit/CMakeLists.txt +++ b/libs/qhexedit/CMakeLists.txt @@ -1,14 +1,8 @@ cmake_minimum_required(VERSION 2.8.7) -if(USE_QT5) - set(CMAKE_AUTOMOC ON) - set(CMAKE_INCLUDE_CURRENT_DIR ON) - find_package(Qt5Widgets REQUIRED) -else() - find_package(Qt4 COMPONENTS QtCore QtGui REQUIRED) - include("${QT_USE_FILE}") - add_definitions(${QT_DEFINITIONS}) -endif() +set(CMAKE_AUTOMOC ON) +set(CMAKE_INCLUDE_CURRENT_DIR ON) +find_package(Qt5Widgets REQUIRED) set(QHEXEDIT_SRC src/qhexedit.cpp @@ -26,13 +20,6 @@ set(QHEXEDIT_MOC_HDR src/commands.h ) -if(NOT USE_QT5) - QT4_WRAP_CPP(QHEXEDIT_MOC ${QHEXEDIT_MOC_HDR}) -endif() - add_library(qhexedit ${QHEXEDIT_SRC} ${QHEXEDIT_HDR} ${QHEXEDIT_MOC}) -if(USE_QT5) - qt5_use_modules(qhexedit Widgets) -endif() - +qt5_use_modules(qhexedit Widgets)