diff options
author | DioEgizio <83089242+DioEgizio@users.noreply.github.com> | 2022-11-07 13:30:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-07 13:30:39 +0100 |
commit | d558ff305ad8cb2a75dc2a4b8ce754ed3bb40904 (patch) | |
tree | a28a66c75bfc85933e6466ed0d5cf0bc352a9a4b | |
parent | 126bbd67f7bdeb26905520a068d8dc1968f2659c (diff) | |
parent | 456999eee678cb2e59ca7d27d04bdb01eb0d7ede (diff) | |
download | PrismLauncher-d558ff305ad8cb2a75dc2a4b8ce754ed3bb40904.tar.gz PrismLauncher-d558ff305ad8cb2a75dc2a4b8ce754ed3bb40904.tar.bz2 PrismLauncher-d558ff305ad8cb2a75dc2a4b8ce754ed3bb40904.zip |
Merge pull request #411 from TheLastRar/configurationless-install
Fix: Configuration-less config for Qt Install
-rw-r--r-- | launcher/CMakeLists.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/launcher/CMakeLists.txt b/launcher/CMakeLists.txt index f92375fb..09a310ca 100644 --- a/launcher/CMakeLists.txt +++ b/launcher/CMakeLists.txt @@ -1066,7 +1066,7 @@ if(INSTALL_BUNDLE STREQUAL "full") # Image formats install( DIRECTORY "${QT_PLUGINS_DIR}/imageformats" - CONFIGURATIONS Debug RelWithDebInfo + CONFIGURATIONS Debug RelWithDebInfo "" DESTINATION ${PLUGIN_DEST_DIR} COMPONENT Runtime REGEX "tga|tiff|mng" EXCLUDE @@ -1084,7 +1084,7 @@ if(INSTALL_BUNDLE STREQUAL "full") # Icon engines install( DIRECTORY "${QT_PLUGINS_DIR}/iconengines" - CONFIGURATIONS Debug RelWithDebInfo + CONFIGURATIONS Debug RelWithDebInfo "" DESTINATION ${PLUGIN_DEST_DIR} COMPONENT Runtime REGEX "fontawesome" EXCLUDE @@ -1102,7 +1102,7 @@ if(INSTALL_BUNDLE STREQUAL "full") # Platform plugins install( DIRECTORY "${QT_PLUGINS_DIR}/platforms" - CONFIGURATIONS Debug RelWithDebInfo + CONFIGURATIONS Debug RelWithDebInfo "" DESTINATION ${PLUGIN_DEST_DIR} COMPONENT Runtime REGEX "minimal|linuxfb|offscreen" EXCLUDE @@ -1121,7 +1121,7 @@ if(INSTALL_BUNDLE STREQUAL "full") if(EXISTS "${QT_PLUGINS_DIR}/styles") install( DIRECTORY "${QT_PLUGINS_DIR}/styles" - CONFIGURATIONS Debug RelWithDebInfo + CONFIGURATIONS Debug RelWithDebInfo "" DESTINATION ${PLUGIN_DEST_DIR} COMPONENT Runtime ) @@ -1139,7 +1139,7 @@ if(INSTALL_BUNDLE STREQUAL "full") if(EXISTS "${QT_PLUGINS_DIR}/tls") install( DIRECTORY "${QT_PLUGINS_DIR}/tls" - CONFIGURATIONS Debug RelWithDebInfo + CONFIGURATIONS Debug RelWithDebInfo "" DESTINATION ${PLUGIN_DEST_DIR} COMPONENT Runtime ) |