added support of Android ABI

This commit is contained in:
Andrei Yankovich 2020-01-06 19:03:15 +03:00
parent df802e44e6
commit a18f0a3dec

View File

@ -14,9 +14,12 @@ CONFIG(release, debug|release): {
} else { } else {
MINIGMP_LIBRARY_OUTPUT_DIR="$$PWD/build/debug" MINIGMP_LIBRARY_OUTPUT_DIR="$$PWD/build/debug"
} }
unix:LIBS += -L$$MINIGMP_LIBRARY_OUTPUT_DIR -lQtBigInt
win32:LIBS += -L$$MINIGMP_LIBRARY_OUTPUT_DIR -lQtBigInt !isEmpty(QT_ARCH): {
LIBS += -L$$MINIGMP_LIBRARY_OUTPUT_DIR -lQtBigInt_$$QT_ARCH
} else {
LIBS += -L$$MINIGMP_LIBRARY_OUTPUT_DIR -lQtBigInt
}
include(GMPIncudePah.pri) include(GMPIncudePah.pri)
include(ccache.pri); include(ccache.pri);