From 0fe0fadf63e8137551ff1f8087a189b59eebbb9d Mon Sep 17 00:00:00 2001 From: Melvin Keskin Date: Tue, 11 Jun 2019 00:34:45 +0200 Subject: [PATCH] Disable Qt Quick Compiler by default QtCreator can now recognize the QML files. This also avoids binary incompatibility issues. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e0ab820..0713227 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,7 @@ option(STATIC_BUILD "Build Kaidan statically") option(UBUNTU_TOUCH "Building a Ubuntu Touch click (internal use only!)" FALSE) option(CLICK_ARCH "Architecture that will be used in the click's manifest") option(CLICK_DATE "Date used in the version number in the click's manifest") -option(QUICK_COMPILER "Use QtQuick compiler to improve performance" TRUE) +option(QUICK_COMPILER "Use QtQuick compiler to improve performance" FALSE) # Find includes in corresponding build directories set(CMAKE_INCLUDE_CURRENT_DIR ON) -- GitLab