aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheLastRar <TheLastRar@users.noreply.github.com>2022-10-27 17:37:30 +0100
committerTheLastRar <TheLastRar@users.noreply.github.com>2022-11-03 21:35:28 +0000
commite682c3e9b8f75599c89e10b4d7ffa7612d2bd2e9 (patch)
treeb8dea93b0ebd62a8e83cdf4f61bb6ac2207959dc
parentfe347262e9785a4706a92d981275eb08b8f9c103 (diff)
downloadPrismLauncher-e682c3e9b8f75599c89e10b4d7ffa7612d2bd2e9.tar.gz
PrismLauncher-e682c3e9b8f75599c89e10b4d7ffa7612d2bd2e9.tar.bz2
PrismLauncher-e682c3e9b8f75599c89e10b4d7ffa7612d2bd2e9.zip
Fix: Correct exclusions for debug QT plugins
Signed-off-by: TheLastRar <TheLastRar@users.noreply.github.com>
-rw-r--r--launcher/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/launcher/CMakeLists.txt b/launcher/CMakeLists.txt
index 0dae47df..7998f4f5 100644
--- a/launcher/CMakeLists.txt
+++ b/launcher/CMakeLists.txt
@@ -1127,7 +1127,7 @@ if(INSTALL_BUNDLE STREQUAL "full")
DESTINATION ${PLUGIN_DEST_DIR}
COMPONENT Runtime
REGEX "minimal|linuxfb|offscreen" EXCLUDE
- REGEX "d\\." EXCLUDE
+ REGEX "[^2]d\\." EXCLUDE
REGEX "_debug\\." EXCLUDE
REGEX "\\.dSYM" EXCLUDE
)
@@ -1148,6 +1148,7 @@ if(INSTALL_BUNDLE STREQUAL "full")
DIRECTORY "${QT_PLUGINS_DIR}/tls"
DESTINATION ${PLUGIN_DEST_DIR}
COMPONENT Runtime
+ REGEX "dd\\." EXCLUDE
REGEX "_debug\\." EXCLUDE
REGEX "\\.dSYM" EXCLUDE
)