From 6982ce824f1dad9d2fa7b50adb81792b3e656214 Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Mon, 15 Dec 2025 11:27:49 -0500 Subject: [PATCH] build (win32): do not include icu related dlls for windows deployments --- src/apps/CMakeLists.txt | 1 + src/apps/deskflow-gui/CMakeLists.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/src/apps/CMakeLists.txt b/src/apps/CMakeLists.txt index bd5102967..2ef28e3fe 100644 --- a/src/apps/CMakeLists.txt +++ b/src/apps/CMakeLists.txt @@ -32,6 +32,7 @@ set(WIN32_PRE_EXCLUDE_REGEXES "api-ms-win-.*" "ext-ms-.*" "^hvsifiletrust\\.dll$" + "^icu.*\\.dll$" ) set(WIN32_POST_EXCLUDE_REGEXES ".*system32.*") diff --git a/src/apps/deskflow-gui/CMakeLists.txt b/src/apps/deskflow-gui/CMakeLists.txt index b2651578c..78a4b7be7 100644 --- a/src/apps/deskflow-gui/CMakeLists.txt +++ b/src/apps/deskflow-gui/CMakeLists.txt @@ -86,6 +86,7 @@ if(WIN32) DIRECTORY ${QT_DEPENDS_DIR}/ DESTINATION ${CMAKE_INSTALL_LIBDIR} PATTERN "dx*.dll" EXCLUDE + PATTERN "icu*.dll" EXCLUDE ) elseif(APPLE)