summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2016-01-20 02:44:57 +0100
committerPetr Mrázek <peterix@gmail.com>2016-01-20 02:44:57 +0100
commit47ea2a71c003bff1c4386b9c189f455f3e6fd973 (patch)
tree02817bfdd888cb0c7815a8a5156c23fcb54a14b7
parent2c2b960ab4842b527653ec6fb8081412d9b02bae (diff)
downloadMultiMC-47ea2a71c003bff1c4386b9c189f455f3e6fd973.tar
MultiMC-47ea2a71c003bff1c4386b9c189f455f3e6fd973.tar.gz
MultiMC-47ea2a71c003bff1c4386b9c189f455f3e6fd973.tar.lz
MultiMC-47ea2a71c003bff1c4386b9c189f455f3e6fd973.tar.xz
MultiMC-47ea2a71c003bff1c4386b9c189f455f3e6fd973.zip
GH-1408 add bearer plugins
This should fix wifi issues on Windows
-rw-r--r--application/CMakeLists.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/application/CMakeLists.txt b/application/CMakeLists.txt
index c3325055..eedb8010 100644
--- a/application/CMakeLists.txt
+++ b/application/CMakeLists.txt
@@ -375,6 +375,12 @@ if(CMAKE_BUILD_TYPE STREQUAL "Debug" OR CMAKE_BUILD_TYPE STREQUAL "RelWithDebInf
COMPONENT Runtime
REGEX "minimal|linuxfb|offscreen" EXCLUDE
)
+ # Bearer plugins
+ install(
+ DIRECTORY "${QT_PLUGINS_DIR}/bearer"
+ DESTINATION ${PLUGIN_DEST_DIR}
+ COMPONENT Runtime
+ )
else()
# Image formats
install(
@@ -403,6 +409,14 @@ else()
REGEX "d\\." EXCLUDE
REGEX "_debug\\." EXCLUDE
)
+ # Bearer plugins
+ install(
+ DIRECTORY "${QT_PLUGINS_DIR}/bearer"
+ DESTINATION ${PLUGIN_DEST_DIR}
+ COMPONENT Runtime
+ REGEX "d\\." EXCLUDE
+ REGEX "_debug\\." EXCLUDE
+ )
if(APPLE)
# Accessible plugin to make buttons look decent on osx
if("${Qt5Core_VERSION_STRING}" VERSION_LESS "5.4.0")