Skip to content

Commit

Permalink
Merge pull request #4947 from yurivict/FreeBSD_patches
Browse files Browse the repository at this point in the history
Fix Qt version comparison line in the .pro file
  • Loading branch information
pawelsalawa authored Feb 28, 2024
2 parents f04fbcd + bce4f7c commit a640943
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SQLiteStudio3/SQLiteStudio3.pro
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ REQ_QT_MAJOR = 5
REQ_QT_MINOR = 12
REQ_QT_PATCH = 0

lessThan(QT_MAJOR_VERSION, $$REQ_QT_MAJOR)|lessThan(QT_MINOR_VERSION, $$REQ_QT_MINOR)|lessThan(QT_MINOR_VERSION, $$REQ_QT_PATCH) {
!versionAtLeast(QT_VERSION, $${REQ_QT_MAJOR}.$${REQ_QT_MINOR}.$${REQ_QT_PATCH}) {
error($$sprintf("Required Qt version is at least %1.%2.%3. This Qt version is %4.%5.%6.", \
$$REQ_QT_MAJOR, $$REQ_QT_MINOR, $$REQ_QT_PATCH, \
$$QT_MAJOR_VERSION, $$QT_MINOR_VERSION, $$QT_PATCH_VERSION))
Expand Down

0 comments on commit a640943

Please sign in to comment.