summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.qmake.conf2
-rw-r--r--examples/sensors/grue/lib/lib.pri3
-rw-r--r--examples/sensors/grue/lib/lib.pro1
3 files changed, 4 insertions, 2 deletions
diff --git a/.qmake.conf b/.qmake.conf
index b7921871..c9b2fcc1 100644
--- a/.qmake.conf
+++ b/.qmake.conf
@@ -1,3 +1,3 @@
load(qt_build_config)
-MODULE_VERSION = 5.15.4
+MODULE_VERSION = 5.15.5
diff --git a/examples/sensors/grue/lib/lib.pri b/examples/sensors/grue/lib/lib.pri
index 0e3da252..675914bc 100644
--- a/examples/sensors/grue/lib/lib.pri
+++ b/examples/sensors/grue/lib/lib.pri
@@ -3,4 +3,5 @@ INCLUDEPATH += $$PWD
macos: LIBS += -L$$OUT_PWD/../grue_app.app/Contents/Frameworks
else: LIBS += -L$$OUT_PWD/..
-LIBS += -lgruesensor
+android: LIBS += -lgruesensor_$${QT_ARCH}
+else: LIBS += -lgruesensor
diff --git a/examples/sensors/grue/lib/lib.pro b/examples/sensors/grue/lib/lib.pro
index cc10e5c4..197d91c8 100644
--- a/examples/sensors/grue/lib/lib.pro
+++ b/examples/sensors/grue/lib/lib.pro
@@ -1,5 +1,6 @@
TEMPLATE = lib
TARGET = gruesensor
+android: TARGET = gruesensor_$${QT_ARCH}
macos: DESTDIR = ../grue_app.app/Contents/Frameworks
else: DESTDIR = $$OUT_PWD/..