From df6de964ceebc4fbf69bdd42132a6d900ee02ddd Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Sat, 18 Feb 2023 10:19:51 -0800 Subject: [PATCH] Disable Qt Quick Compiler Once we are on Qt6 this isn't really that useful, and breaks every Qt update if there is a mismatch between when it was compiled and what it is run on. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 81dcbbd9..faa27d3a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH}) set(KF_IGNORE_PLATFORM_CHECK ON CACHE BOOL "Don't check platform that is being built on") -option(QUICK_COMPILER "Use QtQuick compiler to improve performance" TRUE) +option(QUICK_COMPILER "Use QtQuick compiler to improve performance" FALSE) include(KDEInstallDirs) include(KDECMakeSettings)