Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Molkentin <danimo@owncloud.com>2013-11-27 18:43:47 +0400
committerDaniel Molkentin <danimo@owncloud.com>2013-11-27 18:43:47 +0400
commit0fc51704f5ba8b4145260c205de296e6bd1a4b36 (patch)
tree5dace7cc43835f64520eb3432e55ff58278b8693
parent46a403eb02b6171aae0e910d2bca0bcb90942241 (diff)
Enable accessibility on OS X
Fixes #736
-rw-r--r--src/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 34f8ac49c..b030a70b7 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -364,7 +364,9 @@ install(TARGETS ${APPLICATION_EXECUTABLE}
# currently it needs to be done because the code right above needs to be executed no matter
# if building a bundle or not and the install_qt4_executable needs to be called afterwards
if(BUILD_OWNCLOUD_OSX_BUNDLE)
- install_qt_executable(${OWNCLOUD_OSX_BUNDLE} "qsqlite")
+ install_qt4_executable(${OWNCLOUD_OSX_BUNDLE})
+ install_qt4_plugin(qsqlite ${OWNCLOUD_OSX_BUNDLE} 0 "")
+ install_qt4_plugin(qtaccessiblewidgets ${OWNCLOUD_OSX_BUNDLE} 0 "")
endif()
find_program(KRAZY2_EXECUTABLE krazy2)