Skip to content

Commit

Permalink
Merge pull request #13055 from brvphoenix/fix-cross-compile
Browse files Browse the repository at this point in the history
Improve qmake configuration file for cross compilation
  • Loading branch information
Chocobo1 authored Jun 23, 2020
2 parents 602e6b5 + 05bd0e5 commit 929dc2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/src.pro
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ include(base/base.pri)
!nowebui: include(webui/webui.pri)

isEmpty(QMAKE_LRELEASE) {
win32: QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease.exe
else: QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease
win32: QMAKE_LRELEASE = $$[QT_HOST_BINS]/lrelease.exe
else: QMAKE_LRELEASE = $$[QT_HOST_BINS]/lrelease
unix {
equals(QT_MAJOR_VERSION, 5) {
!exists($$QMAKE_LRELEASE): QMAKE_LRELEASE = lrelease-qt5
Expand Down

0 comments on commit 929dc2e

Please sign in to comment.