diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-09-12 17:34:33 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-09-13 13:55:46 -0700 |
commit | 3825fbbf72ecb75ffba628ae4d891bb5b8fff4f4 (patch) | |
tree | 58e7882ba41051a21678816069d45c28893340d8 /CMakeLists.txt | |
parent | e6ac0665c7f124e56915630e46dcd70dc95bef38 (diff) | |
download | subsurface-3825fbbf72ecb75ffba628ae4d891bb5b8fff4f4.tar.gz |
build-system/macOS: add one more library that macdeployqt misses
This appears to be new with Qt 5.14.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b7e356820..61cb33822 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -448,6 +448,10 @@ elseif(CMAKE_SYSTEM_NAME STREQUAL "Darwin") # and with Qt 5.11 we need another library that isn't copied by macdeployqt install(CODE "execute_process(COMMAND cp -a ${_qt5Core_install_prefix}/lib/QtPositioningQuick.framework ${CMAKE_BINARY_DIR}/${APP_BUNDLE_DIR}/Contents/Frameworks)") endif() + if(NOT Qt5Core_VERSION VERSION_LESS 5.14.0) + # and with Qt 5.14 we need another library that isn't always copied by macdeployqt + install(CODE "execute_process(COMMAND cp -a ${_qt5Core_install_prefix}/lib/QtQmlWorkerScript.framework ${CMAKE_BINARY_DIR}/${APP_BUNDLE_DIR}/Contents/Frameworks)") + endif() if (SUBSURFACE_TARGET_EXECUTABLE MATCHES "MobileExecutable") install(CODE "execute_process(COMMAND cp -a ${_qt5Core_install_prefix}/qml/QtQuick ${CMAKE_BINARY_DIR}/${APP_BUNDLE_DIR}/Contents/Resources/qml)") install(CODE "execute_process(COMMAND cp -a ${_qt5Core_install_prefix}/qml/QtGraphicalEffects ${CMAKE_BINARY_DIR}/${APP_BUNDLE_DIR}/Contents/Resources/qml)") |