From 31cf08701f8cb4e41069f62043d2740f7d89495c Mon Sep 17 00:00:00 2001 From: Jeremy Lainé Date: Thu, 13 Sep 2012 15:49:02 +0200 Subject: build a static lib on android by default --- qxmpp.pri | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/qxmpp.pri b/qxmpp.pri index aea29b8d..11edbb87 100644 --- a/qxmpp.pri +++ b/qxmpp.pri @@ -13,7 +13,11 @@ CONFIG(debug, debug|release) { # Determine library type (shared or staticlib) isEmpty(QXMPP_LIBRARY_TYPE) { - QXMPP_LIBRARY_TYPE = shared + android { + QXMPP_LIBRARY_TYPE = staticlib + } else { + QXMPP_LIBRARY_TYPE = shared + } } # Libraries used internally by QXmpp -- cgit v1.2.3