31 lines
936 B
Diff
31 lines
936 B
Diff
From ccb979e48e8336bff244f2c92be75cef6d793792 Mon Sep 17 00:00:00 2001
|
||
From: yangfeng <yangfeng@kylinsec.com.cn>
|
||
Date: Wed, 17 Apr 2024 20:42:44 +0800
|
||
Subject: [PATCH 15/16] fix(*):fix theme support custom library name
|
||
MIME-Version: 1.0
|
||
Content-Type: text/plain; charset=UTF-8
|
||
Content-Transfer-Encoding: 8bit
|
||
|
||
- 修复主题支持自定义库名
|
||
|
||
Fixed #35086
|
||
---
|
||
cmake/modules/FindQt5ThemeSupport.cmake | 1 +
|
||
1 file changed, 1 insertion(+)
|
||
|
||
diff --git a/cmake/modules/FindQt5ThemeSupport.cmake b/cmake/modules/FindQt5ThemeSupport.cmake
|
||
index d5c1753..2c47cd2 100644
|
||
--- a/cmake/modules/FindQt5ThemeSupport.cmake
|
||
+++ b/cmake/modules/FindQt5ThemeSupport.cmake
|
||
@@ -16,6 +16,7 @@ find_path(Qt5ThemeSupport_INCLUDE_DIR
|
||
# 拼出Qt5ThemeSupport静态库位置
|
||
find_library(Qt5ThemeSupport_LIBRARY
|
||
NAMES
|
||
+ Qt5ThemeSupportKS
|
||
Qt5ThemeSupport
|
||
HINTS
|
||
${PKG_Qt5ThemeSupport_LIBRARY_DIRS}
|
||
--
|
||
2.27.0
|
||
|