mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
iOS build: use the Qt version that is available
Simply have the Qt link in packagin/ios point to whatever Qt version you want to build against and the script picks the right one. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
da052967c2
commit
10833e32ed
1 changed files with 2 additions and 1 deletions
|
@ -8,6 +8,7 @@ set -e
|
|||
TOP=$(pwd)
|
||||
SUBSURFACE_SOURCE=${TOP}/../../../subsurface
|
||||
IOS_QT=${TOP}/Qt
|
||||
QT_VERSION=$(cd ${IOS_QT}; ls -d 5.?)
|
||||
|
||||
# Which versions are we building against?
|
||||
SQLITE_VERSION=3090200
|
||||
|
@ -367,6 +368,6 @@ popd
|
|||
pushd Subsurface-mobile
|
||||
mkdir -p translations
|
||||
for src in $SRCS; do
|
||||
${IOS_QT}/5.6/ios/bin/lrelease ${SUBSURFACE_SOURCE}/translations/$src -qm translations/${src/.ts/.qm}
|
||||
${IOS_QT}/${QT_VERSION}/ios/bin/lrelease ${SUBSURFACE_SOURCE}/translations/$src -qm translations/${src/.ts/.qm}
|
||||
done
|
||||
popd
|
||||
|
|
Loading…
Reference in a new issue