Skip to content

Commit

Permalink
Fixing Qt version to use with ./WinMake.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
medo64 committed Apr 15, 2021
1 parent 1763e29 commit 25ce2b5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion WinMake.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/bin/bash

QT_PATH='/c/Qt'
QT_VERSION=5.14.2
CERTIFICATE_THUMBPRINT="e9b444fffb1375ece027e40d8637b6da3fdaaf0e"
TIMESTAMP_URL="http://timestamp.digicert.com" #http://timestamp.comodoca.com/rfc3161

Expand Down Expand Up @@ -37,7 +38,7 @@ DIST_NAME='qtext'
DIST_VERSION=`grep VERSION src/QText.pro | head -1 | cut -d'=' -f2 | awk '{print $$1}' | tr -d '"'`


CMD_QMAKE=`ls $QT_PATH/**/**/bin/qmake.exe | sort | tail -1`
CMD_QMAKE=`ls $QT_PATH/$QT_VERSION/**/bin/qmake.exe | sort | tail -1`
CMD_MAKE=`ls $QT_PATH/Tools/**/bin/mingw32-make.exe | sort | tail -1`

if [[ ! -f "$CMD_QMAKE" ]]; then
Expand Down

0 comments on commit 25ce2b5

Please sign in to comment.