From 861ea96244f1b5cd9cc2f8ba381aea71da888d00 Mon Sep 17 00:00:00 2001 From: Vlad Zahorodnii Date: Wed, 2 Sep 2020 19:44:14 +0300 Subject: [PATCH] Fix remaining usages of REQUIRED_QT_VERSION and KF5_DEP_VERSION REQUIRED_QT_VERSION and KF5_DEP_VERSION trace their origin back to KF5. But in Plasma, we use QT_MIN_VERSION and KF5_MIN_VERSION instead. --- src/wayland/autotests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wayland/autotests/CMakeLists.txt b/src/wayland/autotests/CMakeLists.txt index 6caa27e71c..8d520ecfaa 100644 --- a/src/wayland/autotests/CMakeLists.txt +++ b/src/wayland/autotests/CMakeLists.txt @@ -1,6 +1,6 @@ include(ECMMarkAsTest) -find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Test) +find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED Test) remove_definitions(-DQT_NO_CAST_FROM_BYTEARRAY) remove_definitions(-DQT_NO_CAST_FROM_ASCII)