diff options
author | txtsd <thexerothermicsclerodermoid@gmail.com> | 2022-03-20 22:20:02 +0530 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-03-22 20:11:15 +0100 |
commit | cd4851c98be26e05a22ba55cc9804fbdb178d7d3 (patch) | |
tree | 6deca06715d80bbfa66a65c4132ad591d45343b2 | |
parent | 3db5f3040314f252a64f485f366bd30f793aff86 (diff) | |
download | PrismLauncher-cd4851c98be26e05a22ba55cc9804fbdb178d7d3.tar.gz PrismLauncher-cd4851c98be26e05a22ba55cc9804fbdb178d7d3.tar.bz2 PrismLauncher-cd4851c98be26e05a22ba55cc9804fbdb178d7d3.zip |
Merge pull request #311 from DioEgizio/patch-2
fix webp
-rw-r--r-- | launcher/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/CMakeLists.txt b/launcher/CMakeLists.txt index 039841ef..94dffb2f 100644 --- a/launcher/CMakeLists.txt +++ b/launcher/CMakeLists.txt @@ -995,7 +995,7 @@ if(INSTALL_BUNDLE STREQUAL "full") DIRECTORY "${QT_PLUGINS_DIR}/imageformats" DESTINATION ${PLUGIN_DEST_DIR} COMPONENT Runtime - REGEX "tga|tiff|mng|webp" EXCLUDE + REGEX "tga|tiff|mng" EXCLUDE ) # Icon engines install( @@ -1025,7 +1025,7 @@ if(INSTALL_BUNDLE STREQUAL "full") DIRECTORY "${QT_PLUGINS_DIR}/imageformats" DESTINATION ${PLUGIN_DEST_DIR} COMPONENT Runtime - REGEX "tga|tiff|mng|webp" EXCLUDE + REGEX "tga|tiff|mng" EXCLUDE REGEX "d\\." EXCLUDE REGEX "_debug\\." EXCLUDE REGEX "\\.dSYM" EXCLUDE |