Android: Fix build error issue in examples
Added branching to plugandpaint example to get correct library architecture to the build Fixes: QTBUG-56322 Pick-to: 5.15 Change-Id: I4d0eb4e24681642991d08c3dd2bad73d10caf962 Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>bb10
parent
cdad78a4a4
commit
34dc76c851
|
|
@ -18,7 +18,11 @@ LIBS = -L../plugins
|
|||
macx-xcode {
|
||||
LIBS += -lpnp_basictools$($${QMAKE_XCODE_LIBRARY_SUFFIX_SETTING})
|
||||
} else {
|
||||
LIBS += -lpnp_basictools
|
||||
android {
|
||||
LIBS += -lpnp_basictools_$${QT_ARCH}
|
||||
} else {
|
||||
LIBS += -lpnp_basictools
|
||||
}
|
||||
if(!debug_and_release|build_pass):CONFIG(debug, debug|release) {
|
||||
mac:LIBS = $$member(LIBS, 0) $$member(LIBS, 1)_debug
|
||||
win32:LIBS = $$member(LIBS, 0) $$member(LIBS, 1)d
|
||||
|
|
|
|||
Loading…
Reference in New Issue