summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@qt.io>2016-08-23 02:01:17 -0700
committerJake Petroules <jake.petroules@qt.io>2016-09-02 08:26:44 +0000
commit7584cdd53ccd5ca3ae2ee84b012b5819a6e1820e (patch)
treeef3be276adfda108e753c568ec507cb3c50227c4
parent0823cc9ca5699a60f4dca33de0d3affc77fa4381 (diff)
Fix dynamic linking on iOS
Static linking was hiding the Foundation dependency. Change-Id: Icd756f5a471cd9cb615b812b0a45118db60fff2d Reviewed-by: Lorn Potter <lorn.potter@canonical.com>
-rw-r--r--src/webview/webview-lib.pri2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webview/webview-lib.pri b/src/webview/webview-lib.pri
index ad6065f..6b6fbbe 100644
--- a/src/webview/webview-lib.pri
+++ b/src/webview/webview-lib.pri
@@ -50,7 +50,7 @@ android {
PRIVATE_HEADERS += \
$$COMMON_HEADERS \
qwebview_darwin_p.h
- LIBS_PRIVATE += -framework WebKit
+ LIBS_PRIVATE += -framework Foundation -framework WebKit
ios {
LIBS_PRIVATE += -framework UIKit