From: Stephan Witt Date: Thu, 6 Feb 2020 21:17:35 +0000 (+0100) Subject: More flexible definition of Qt libraries to include as frameworks for macOS X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=8a76fc20e879a7b139e7a9a1fc9061923da359a7;p=features.git More flexible definition of Qt libraries to include as frameworks for macOS --- diff --git a/development/LyX-Mac-binary-release.sh b/development/LyX-Mac-binary-release.sh index c3e756f636..1c50f42927 100644 --- a/development/LyX-Mac-binary-release.sh +++ b/development/LyX-Mac-binary-release.sh @@ -352,15 +352,19 @@ LyxAppPrefix="${LyxAppDir}.app" # don't change order here... case "${QtVersion}" in 5.0.*|5.1.*) - QtLibraries="QtSvg QtXml QtPrintSupport QtWidgets QtGui QtNetwork QtConcurrent QtCore" + QtLibraries=${QtLibraries:-"QtSvg QtXml QtPrintSupport QtWidgets QtGui QtNetwork QtConcurrent QtCore"} + QtFrameworkVersion="5" + ;; +5.12.*) + QtLibraries=${QtLibraries:-"QtDbus QtSvg QtXml QtPrintSupport QtMacExtras QtWidgets QtGui QtNetwork QtConcurrent QtCore"} QtFrameworkVersion="5" ;; 5*) - QtLibraries="QtSvg QtXml QtPrintSupport QtMacExtras QtWidgets QtGui QtNetwork QtConcurrent QtCore" + QtLibraries=${QtLibraries:-"QtSvg QtXml QtPrintSupport QtMacExtras QtWidgets QtGui QtNetwork QtConcurrent QtCore"} QtFrameworkVersion="5" ;; *) - QtLibraries="QtSvg QtXml QtGui QtNetwork QtCore" + QtLibraries=${QtLibraries:-"QtSvg QtXml QtGui QtNetwork QtCore"} QtFrameworkVersion="4" ;; esac