aboutsummaryrefslogtreecommitdiff
path: root/devtools
diff options
context:
space:
mode:
authorThierry Crozat2019-08-04 17:41:53 +0100
committerThierry Crozat2019-08-04 19:03:34 +0100
commit468c0f07431d3fb423ba697dcf906d9fbc149780 (patch)
tree8bb934e1febd226bb198180dc885c0e84dd71c31 /devtools
parentcd7bf2b09f684ee80fa7b7e46ea0475925488a96 (diff)
downloadscummvm-rg350-468c0f07431d3fb423ba697dcf906d9fbc149780.tar.gz
scummvm-rg350-468c0f07431d3fb423ba697dcf906d9fbc149780.tar.bz2
scummvm-rg350-468c0f07431d3fb423ba697dcf906d9fbc149780.zip
IOS7: Implement isConnectionLimited
Diffstat (limited to 'devtools')
-rw-r--r--devtools/create_project/xcode.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/devtools/create_project/xcode.cpp b/devtools/create_project/xcode.cpp
index 586eaa314c..81678ae624 100644
--- a/devtools/create_project/xcode.cpp
+++ b/devtools/create_project/xcode.cpp
@@ -445,6 +445,7 @@ void XcodeProvider::setupFrameworksBuildPhase(const BuildSetup &setup) {
DEF_SYSFRAMEWORK("OpenGLES");
DEF_SYSFRAMEWORK("QuartzCore");
DEF_SYSFRAMEWORK("UIKit");
+ DEF_SYSFRAMEWORK("SystemConfiguration");
DEF_SYSTBD("libiconv");
// Local libraries
@@ -524,6 +525,7 @@ void XcodeProvider::setupFrameworksBuildPhase(const BuildSetup &setup) {
frameworks_iOS.push_back("CoreFoundation.framework");
frameworks_iOS.push_back("Foundation.framework");
frameworks_iOS.push_back("UIKit.framework");
+ frameworks_iOS.push_back("SystemConfiguration.framework");
frameworks_iOS.push_back("AudioToolbox.framework");
frameworks_iOS.push_back("QuartzCore.framework");
frameworks_iOS.push_back("OpenGLES.framework");