From 1f2a50bcd354e3aae80ce4f99e50f618a7b83e3c Mon Sep 17 00:00:00 2001 From: Thierry Crozat Date: Fri, 9 Sep 2016 23:51:40 +0100 Subject: CLOUD: Move openUrl to OSystem --- devtools/create_project/xcode.cpp | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'devtools') diff --git a/devtools/create_project/xcode.cpp b/devtools/create_project/xcode.cpp index 18dc74f799..21fc25643f 100644 --- a/devtools/create_project/xcode.cpp +++ b/devtools/create_project/xcode.cpp @@ -113,11 +113,6 @@ bool shouldSkipFileForTarget(const std::string &fileID, const std::string &targe splitFilename(fileName, name, ext); if (targetIsIOS(targetName)) { - // networking backend for iOS is openurl-default - if (name == "openurl-posix" || name == "openurl-osx") { - return true; - } - // iOS target: we skip all files with the "_osx" suffix if (name.length() > 4 && name.substr(name.length() - 4) == "_osx") { return true; @@ -156,11 +151,6 @@ bool shouldSkipFileForTarget(const std::string &fileID, const std::string &targe if (directory.length() > iphone_directory.length() && directory.substr(directory.length() - iphone_directory.length()) == iphone_directory) { return true; } - - // networking backend for macOS is openurl-osx - if (name == "openurl-default" || name == "openurl-posix") { - return true; - } } return false; } -- cgit v1.2.3