There was an error while loading. Please reload this page.
1 parent c862872 commit e7266c0Copy full SHA for e7266c0
1 file changed
Jamulus.pro
@@ -262,8 +262,16 @@ win32 {
262
# enabled only for debugging on android devices
263
DEFINES += ANDROIDDEBUG
264
265
- target.path = /tmp/your_executable # path on device
266
- INSTALLS += target
+ CONFIG(debug, debug|release) {
+ DESTDIR = $$OUT_PWD/debug
267
+ } else {
268
+ DESTDIR = $$OUT_PWD/release
269
+ }
270
+
271
+ CONFIG -= android_install
272
+ android_lib.files = $$DESTDIR/libJamulus_$${QT_ARCH}.so
273
+ android_lib.path = /libs/$$ANDROID_TARGET_ARCH
274
+ INSTALLS += android_lib
275
276
HEADERS += src/sound/oboe/sound.h
277
0 commit comments