From a159ce2ee6fabb2ae6223866a4375435257603a3 Mon Sep 17 00:00:00 2001 From: Alexandru Croitor Date: Tue, 22 Sep 2020 17:32:58 +0200 Subject: CMake: Disable usage of CMake API compatibility wrappers Setting the QT_NO_INTERNAL_COMPATIBILITY_FUNCTIONS variable in the project ensures we ported away from old API calls. Task-number: QTBUG-86815 Change-Id: I4582f9f87571e1d25571c42ba20700b3dc79c07c Reviewed-by: Joerg Bornemann --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index f68a3e7..b419fc9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,6 +10,11 @@ project(QtImageFormats # special case LANGUAGES CXX C ) +# special case begin +# Make sure we only use latest private CMake API, aka no compatibility wrappers. +set(QT_NO_INTERNAL_COMPATIBILITY_FUNCTIONS TRUE) +# special case end + find_package(Qt6 ${PROJECT_VERSION} CONFIG REQUIRED COMPONENTS BuildInternals Gui) # special case if(NOT TARGET Qt::Gui) -- cgit v1.2.3