fix qmake
Some checks failed
continuous-integration/drone/push Build encountered an error

This commit is contained in:
2026-01-31 21:20:43 +11:00
parent 3547207eca
commit 945e3212cf
3 changed files with 27 additions and 11 deletions

View File

@@ -1,4 +1,12 @@
include($$[QT_INSTALL_DATA]/mkspecs/linux-g++/qmake.conf)
exists(/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++/qmake.conf) {
include(/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++/qmake.conf)
} else: exists(/usr/share/qt5/mkspecs/linux-g++/qmake.conf) {
include(/usr/share/qt5/mkspecs/linux-g++/qmake.conf)
} else: exists($$[QT_HOST_DATA]/mkspecs/linux-g++/qmake.conf) {
include($$[QT_HOST_DATA]/mkspecs/linux-g++/qmake.conf)
} else {
include($$[QT_INSTALL_DATA]/mkspecs/linux-g++/qmake.conf)
}
QMAKE_CC = aarch64-linux-gnu-gcc
QMAKE_CXX = aarch64-linux-gnu-g++