aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2012-09-13 15:49:02 +0200
committerJeremy Lainé <jeremy.laine@m4x.org>2012-09-13 15:49:02 +0200
commit31cf08701f8cb4e41069f62043d2740f7d89495c (patch)
treef23ccbcc8d959805815d3753c6ba54d63565fc7a
parentfb9e4055f24753461b55d097fa2831dd3d467df2 (diff)
downloadqxmpp-31cf08701f8cb4e41069f62043d2740f7d89495c.tar.gz
build a static lib on android by default
-rw-r--r--qxmpp.pri6
1 files changed, 5 insertions, 1 deletions
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