Added Google Protocol Buffers to Android build

This commit is contained in:
2023-12-15 15:04:55 +01:00
parent 672de3919b
commit dbcfd9b9d3
2 changed files with 9 additions and 2 deletions

View File

@ -39,7 +39,7 @@ RESOURCES += pbfplugin.qrc
DEFINES += QT_NO_DEPRECATED_WARNINGS
unix:!macx{
unix:!macx:!android {
LIBS += -lprotobuf-lite \
-lz
}
@ -58,6 +58,11 @@ macx {
LIBS += $$PROTOBUF/lib/libprotobuf-lite.a \
-lz
}
android {
INCLUDEPATH += $$PROTOBUF/include
LIBS += $$PROTOBUF/$$ANDROID_TARGET_ARCH/libprotobuf-lite.a \
-lz
}
target.path += $$[QT_INSTALL_PLUGINS]/imageformats
INSTALLS += target