From 606c23d1a46f135e55718e378008a4868ef67d77 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Mon, 30 Oct 2023 11:09:29 +0800 Subject: [PATCH] Use highest compression algorithm & level https://doc.qt.io/qt-6/resources.html#compression --- cmake/Modules/CommonConfig.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/Modules/CommonConfig.cmake b/cmake/Modules/CommonConfig.cmake index 050e3d13c..1e3a1d006 100644 --- a/cmake/Modules/CommonConfig.cmake +++ b/cmake/Modules/CommonConfig.cmake @@ -8,7 +8,7 @@ set(CMAKE_CXX_EXTENSIONS OFF) set(CMAKE_AUTOMOC ON) set(CMAKE_AUTORCC ON) -set(CMAKE_AUTORCC_OPTIONS --compress 9 --threshold 5) +set(CMAKE_AUTORCC_OPTIONS --compress-algo best --threshold 5) add_library(qbt_common_cfg INTERFACE)