From fd58f8dce89f33a52bde5b16f041edbd13d925b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Thu, 1 Sep 2016 22:05:29 +0200 Subject: [PATCH] Move templates and distribution stuff to tools/dist Also removed the obsolete iOS xcode template. (cherry picked from commit 3efe1231f0ea9570e4985ac5b8e568c768ad87ce) --- tools/{ => dist}/docker/Dockerfile | 0 tools/{ => dist}/docker/README.md | 0 .../docker/scripts/install-android-tools | 0 tools/{ => dist}/html_fs/godot.html | 0 tools/{ => dist}/html_fs/godotfs.js | 0 .../dist/ios_xcode}/godot_xcode/data.pck | 0 .../ios_xcode}/godot_xcode/godot_debug.iphone | 0 .../godot_ios.xcodeproj/project.pbxproj | 0 .../contents.xcworkspacedata | 0 .../godot_ios/Default-568h@2x~iphone.png | Bin .../godot_xcode/godot_ios/Default-667h.png | Bin .../godot_xcode/godot_ios/Default-667h@2x.png | Bin .../godot_xcode/godot_ios/Default-736h.png | Bin .../godot_xcode/godot_ios/Default-736h@3x.png | Bin .../godot_ios/Default-Landscape-736h.png | Bin .../godot_ios/Default-Landscape@2x~ipad.png | Bin .../godot_ios/Default-Landscape~ipad.png | Bin .../godot_ios/Default-Portrait@2x~ipad.png | Bin .../godot_ios/Default-Portrait~ipad.png | Bin .../godot_ios/Default@2x~iphone.png | Bin .../godot_xcode/godot_ios/Default~iphone.png | Bin .../AppIcon.appiconset/Contents.json | 0 .../AppIcon.appiconset/Icon-100.png | Bin .../AppIcon.appiconset/Icon-114.png | Bin .../AppIcon.appiconset/Icon-120.png | Bin .../AppIcon.appiconset/Icon-144.png | Bin .../AppIcon.appiconset/Icon-152.png | Bin .../AppIcon.appiconset/Icon-180.png | Bin .../AppIcon.appiconset/Icon-29.png | Bin .../AppIcon.appiconset/Icon-40.png | Bin .../AppIcon.appiconset/Icon-50.png | Bin .../AppIcon.appiconset/Icon-57.png | Bin .../AppIcon.appiconset/Icon-58.png | Bin .../AppIcon.appiconset/Icon-60.png | Bin .../AppIcon.appiconset/Icon-72.png | Bin .../AppIcon.appiconset/Icon-76.png | Bin .../AppIcon.appiconset/Icon-80.png | Bin .../AppIcon.appiconset/icon-167.png | Bin .../AppIcon.appiconset/icon-87.png | Bin .../Images.xcassets/AppIcon.appiconset/sizes | 0 .../godot_ios/en.lproj/InfoPlist.strings | 0 .../godot_ios/godot_ios-Info.plist | 0 .../ios_xcode}/godot_xcode/godot_ios/main.m | 0 .../ios_xcode}/godot_xcode/godot_opt.iphone | 0 .../osx_template.app/Contents/Info.plist | 0 .../osx_template.app}/Contents/PkgInfo | 0 .../Contents/Resources/icon.icns | Bin .../osx_tools.app}/Contents/Info.plist | 0 .../osx_tools.app}/Contents/PkgInfo | 0 .../Contents/Resources/Godot.icns | Bin tools/ios_xcode_template/data.pck | 0 .../godot_ios.xcodeproj/project.pbxproj | 469 ------------------ .../contents.xcworkspacedata | 7 - .../UserInterfaceState.xcuserstate | Bin 13553 -> 0 bytes .../xcschemes/godot_ios.xcscheme | 96 ---- .../xcschemes/xcschememanagement.plist | 27 - .../godot_ios/en.lproj/InfoPlist.strings | 2 - .../godot_ios/godot_ios-Info.plist | 47 -- .../godot_ios/godot_ios-Prefix.pch | 16 - tools/ios_xcode_template/godot_ios/main.m | 39 -- .../godot_iosTests/en.lproj/InfoPlist.strings | 2 - .../godot_iosTests/godot_iosTests-Info.plist | 22 - .../godot_iosTests/godot_iosTests.m | 55 -- 63 files changed, 782 deletions(-) rename tools/{ => dist}/docker/Dockerfile (100%) rename tools/{ => dist}/docker/README.md (100%) rename tools/{ => dist}/docker/scripts/install-android-tools (100%) rename tools/{ => dist}/html_fs/godot.html (100%) rename tools/{ => dist}/html_fs/godotfs.js (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/data.pck (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_debug.iphone (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios.xcodeproj/project.pbxproj (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Default-568h@2x~iphone.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Default-667h.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Default-667h@2x.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Default-736h.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Default-736h@3x.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Default-Landscape-736h.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Default-Landscape@2x~ipad.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Default-Landscape~ipad.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Default-Portrait@2x~ipad.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Default-Portrait~ipad.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Default@2x~iphone.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Default~iphone.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Contents.json (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-100.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-114.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-120.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-144.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-152.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-180.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-29.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-40.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-50.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-57.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-58.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-60.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-72.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-76.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-80.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/icon-167.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/icon-87.png (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/sizes (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/en.lproj/InfoPlist.strings (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/godot_ios-Info.plist (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_ios/main.m (100%) rename {platform/iphone/xcode => tools/dist/ios_xcode}/godot_xcode/godot_opt.iphone (100%) rename tools/{ => dist}/osx_template.app/Contents/Info.plist (100%) rename tools/{Godot.app => dist/osx_template.app}/Contents/PkgInfo (100%) rename tools/{ => dist}/osx_template.app/Contents/Resources/icon.icns (100%) rename tools/{Godot.app => dist/osx_tools.app}/Contents/Info.plist (100%) rename tools/{osx_template.app => dist/osx_tools.app}/Contents/PkgInfo (100%) rename tools/{Godot.app => dist/osx_tools.app}/Contents/Resources/Godot.icns (100%) delete mode 100644 tools/ios_xcode_template/data.pck delete mode 100644 tools/ios_xcode_template/godot_ios.xcodeproj/project.pbxproj delete mode 100644 tools/ios_xcode_template/godot_ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata delete mode 100644 tools/ios_xcode_template/godot_ios.xcodeproj/project.xcworkspace/xcuserdata/punto.xcuserdatad/UserInterfaceState.xcuserstate delete mode 100644 tools/ios_xcode_template/godot_ios.xcodeproj/xcuserdata/punto.xcuserdatad/xcschemes/godot_ios.xcscheme delete mode 100644 tools/ios_xcode_template/godot_ios.xcodeproj/xcuserdata/punto.xcuserdatad/xcschemes/xcschememanagement.plist delete mode 100644 tools/ios_xcode_template/godot_ios/en.lproj/InfoPlist.strings delete mode 100644 tools/ios_xcode_template/godot_ios/godot_ios-Info.plist delete mode 100644 tools/ios_xcode_template/godot_ios/godot_ios-Prefix.pch delete mode 100644 tools/ios_xcode_template/godot_ios/main.m delete mode 100644 tools/ios_xcode_template/godot_iosTests/en.lproj/InfoPlist.strings delete mode 100644 tools/ios_xcode_template/godot_iosTests/godot_iosTests-Info.plist delete mode 100644 tools/ios_xcode_template/godot_iosTests/godot_iosTests.m diff --git a/tools/docker/Dockerfile b/tools/dist/docker/Dockerfile similarity index 100% rename from tools/docker/Dockerfile rename to tools/dist/docker/Dockerfile diff --git a/tools/docker/README.md b/tools/dist/docker/README.md similarity index 100% rename from tools/docker/README.md rename to tools/dist/docker/README.md diff --git a/tools/docker/scripts/install-android-tools b/tools/dist/docker/scripts/install-android-tools similarity index 100% rename from tools/docker/scripts/install-android-tools rename to tools/dist/docker/scripts/install-android-tools diff --git a/tools/html_fs/godot.html b/tools/dist/html_fs/godot.html similarity index 100% rename from tools/html_fs/godot.html rename to tools/dist/html_fs/godot.html diff --git a/tools/html_fs/godotfs.js b/tools/dist/html_fs/godotfs.js similarity index 100% rename from tools/html_fs/godotfs.js rename to tools/dist/html_fs/godotfs.js diff --git a/platform/iphone/xcode/godot_xcode/data.pck b/tools/dist/ios_xcode/godot_xcode/data.pck similarity index 100% rename from platform/iphone/xcode/godot_xcode/data.pck rename to tools/dist/ios_xcode/godot_xcode/data.pck diff --git a/platform/iphone/xcode/godot_xcode/godot_debug.iphone b/tools/dist/ios_xcode/godot_xcode/godot_debug.iphone similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_debug.iphone rename to tools/dist/ios_xcode/godot_xcode/godot_debug.iphone diff --git a/platform/iphone/xcode/godot_xcode/godot_ios.xcodeproj/project.pbxproj b/tools/dist/ios_xcode/godot_xcode/godot_ios.xcodeproj/project.pbxproj similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios.xcodeproj/project.pbxproj rename to tools/dist/ios_xcode/godot_xcode/godot_ios.xcodeproj/project.pbxproj diff --git a/platform/iphone/xcode/godot_xcode/godot_ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/tools/dist/ios_xcode/godot_xcode/godot_ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata rename to tools/dist/ios_xcode/godot_xcode/godot_ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Default-568h@2x~iphone.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Default-568h@2x~iphone.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Default-568h@2x~iphone.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Default-568h@2x~iphone.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Default-667h.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Default-667h.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Default-667h.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Default-667h.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Default-667h@2x.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Default-667h@2x.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Default-667h@2x.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Default-667h@2x.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Default-736h.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Default-736h.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Default-736h.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Default-736h.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Default-736h@3x.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Default-736h@3x.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Default-736h@3x.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Default-736h@3x.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Default-Landscape-736h.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Default-Landscape-736h.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Default-Landscape-736h.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Default-Landscape-736h.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Default-Landscape@2x~ipad.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Default-Landscape@2x~ipad.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Default-Landscape@2x~ipad.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Default-Landscape@2x~ipad.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Default-Landscape~ipad.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Default-Landscape~ipad.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Default-Landscape~ipad.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Default-Landscape~ipad.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Default-Portrait@2x~ipad.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Default-Portrait@2x~ipad.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Default-Portrait@2x~ipad.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Default-Portrait@2x~ipad.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Default-Portrait~ipad.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Default-Portrait~ipad.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Default-Portrait~ipad.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Default-Portrait~ipad.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Default@2x~iphone.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Default@2x~iphone.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Default@2x~iphone.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Default@2x~iphone.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Default~iphone.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Default~iphone.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Default~iphone.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Default~iphone.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Contents.json b/tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Contents.json similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Contents.json rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Contents.json diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-100.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-100.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-100.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-100.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-114.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-114.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-114.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-114.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-120.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-120.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-120.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-120.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-144.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-144.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-144.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-144.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-152.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-152.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-152.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-152.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-180.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-180.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-180.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-180.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-29.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-29.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-29.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-29.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-40.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-40.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-40.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-40.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-50.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-50.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-50.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-50.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-57.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-57.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-57.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-57.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-58.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-58.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-58.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-58.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-60.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-60.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-60.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-60.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-72.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-72.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-72.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-72.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-76.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-76.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-76.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-76.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-80.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-80.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-80.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/Icon-80.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/icon-167.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/icon-167.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/icon-167.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/icon-167.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/icon-87.png b/tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/icon-87.png similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/icon-87.png rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/icon-87.png diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/sizes b/tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/sizes similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/sizes rename to tools/dist/ios_xcode/godot_xcode/godot_ios/Images.xcassets/AppIcon.appiconset/sizes diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/en.lproj/InfoPlist.strings b/tools/dist/ios_xcode/godot_xcode/godot_ios/en.lproj/InfoPlist.strings similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/en.lproj/InfoPlist.strings rename to tools/dist/ios_xcode/godot_xcode/godot_ios/en.lproj/InfoPlist.strings diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/godot_ios-Info.plist b/tools/dist/ios_xcode/godot_xcode/godot_ios/godot_ios-Info.plist similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/godot_ios-Info.plist rename to tools/dist/ios_xcode/godot_xcode/godot_ios/godot_ios-Info.plist diff --git a/platform/iphone/xcode/godot_xcode/godot_ios/main.m b/tools/dist/ios_xcode/godot_xcode/godot_ios/main.m similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_ios/main.m rename to tools/dist/ios_xcode/godot_xcode/godot_ios/main.m diff --git a/platform/iphone/xcode/godot_xcode/godot_opt.iphone b/tools/dist/ios_xcode/godot_xcode/godot_opt.iphone similarity index 100% rename from platform/iphone/xcode/godot_xcode/godot_opt.iphone rename to tools/dist/ios_xcode/godot_xcode/godot_opt.iphone diff --git a/tools/osx_template.app/Contents/Info.plist b/tools/dist/osx_template.app/Contents/Info.plist similarity index 100% rename from tools/osx_template.app/Contents/Info.plist rename to tools/dist/osx_template.app/Contents/Info.plist diff --git a/tools/Godot.app/Contents/PkgInfo b/tools/dist/osx_template.app/Contents/PkgInfo similarity index 100% rename from tools/Godot.app/Contents/PkgInfo rename to tools/dist/osx_template.app/Contents/PkgInfo diff --git a/tools/osx_template.app/Contents/Resources/icon.icns b/tools/dist/osx_template.app/Contents/Resources/icon.icns similarity index 100% rename from tools/osx_template.app/Contents/Resources/icon.icns rename to tools/dist/osx_template.app/Contents/Resources/icon.icns diff --git a/tools/Godot.app/Contents/Info.plist b/tools/dist/osx_tools.app/Contents/Info.plist similarity index 100% rename from tools/Godot.app/Contents/Info.plist rename to tools/dist/osx_tools.app/Contents/Info.plist diff --git a/tools/osx_template.app/Contents/PkgInfo b/tools/dist/osx_tools.app/Contents/PkgInfo similarity index 100% rename from tools/osx_template.app/Contents/PkgInfo rename to tools/dist/osx_tools.app/Contents/PkgInfo diff --git a/tools/Godot.app/Contents/Resources/Godot.icns b/tools/dist/osx_tools.app/Contents/Resources/Godot.icns similarity index 100% rename from tools/Godot.app/Contents/Resources/Godot.icns rename to tools/dist/osx_tools.app/Contents/Resources/Godot.icns diff --git a/tools/ios_xcode_template/data.pck b/tools/ios_xcode_template/data.pck deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/tools/ios_xcode_template/godot_ios.xcodeproj/project.pbxproj b/tools/ios_xcode_template/godot_ios.xcodeproj/project.pbxproj deleted file mode 100644 index 4ae1ec8a530..00000000000 --- a/tools/ios_xcode_template/godot_ios.xcodeproj/project.pbxproj +++ /dev/null @@ -1,469 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - D0BCFE3818AEBDA2004A7AAE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0BCFE3718AEBDA2004A7AAE /* Foundation.framework */; }; - D0BCFE3A18AEBDA2004A7AAE /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0BCFE3918AEBDA2004A7AAE /* CoreGraphics.framework */; }; - D0BCFE3C18AEBDA2004A7AAE /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0BCFE3B18AEBDA2004A7AAE /* UIKit.framework */; }; - D0BCFE3E18AEBDA2004A7AAE /* GLKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0BCFE3D18AEBDA2004A7AAE /* GLKit.framework */; }; - D0BCFE4018AEBDA2004A7AAE /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0BCFE3F18AEBDA2004A7AAE /* OpenGLES.framework */; }; - D0BCFE4618AEBDA2004A7AAE /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = D0BCFE4418AEBDA2004A7AAE /* InfoPlist.strings */; }; - D0BCFE6218AEBDA3004A7AAE /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0BCFE6118AEBDA3004A7AAE /* XCTest.framework */; }; - D0BCFE6318AEBDA3004A7AAE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0BCFE3718AEBDA2004A7AAE /* Foundation.framework */; }; - D0BCFE6418AEBDA3004A7AAE /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0BCFE3B18AEBDA2004A7AAE /* UIKit.framework */; }; - D0BCFE6C18AEBDA3004A7AAE /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = D0BCFE6A18AEBDA3004A7AAE /* InfoPlist.strings */; }; - D0BCFE6E18AEBDA3004A7AAE /* godot_iosTests.m in Sources */ = {isa = PBXBuildFile; fileRef = D0BCFE6D18AEBDA3004A7AAE /* godot_iosTests.m */; }; - D0BCFE7818AEBFEB004A7AAE /* data.pck in Resources */ = {isa = PBXBuildFile; fileRef = D0BCFE7718AEBFEB004A7AAE /* data.pck */; }; - D0BCFE7A18AEC06A004A7AAE /* godot_opt.iphone in Resources */ = {isa = PBXBuildFile; fileRef = D0BCFE7918AEC06A004A7AAE /* godot_opt.iphone */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - D0BCFE6518AEBDA3004A7AAE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D0BCFE2C18AEBDA2004A7AAE /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0BCFE3318AEBDA2004A7AAE; - remoteInfo = godot_ios; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXFileReference section */ - D0BCFE3418AEBDA2004A7AAE /* godot_ios.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = godot_ios.app; sourceTree = BUILT_PRODUCTS_DIR; }; - D0BCFE3718AEBDA2004A7AAE /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; - D0BCFE3918AEBDA2004A7AAE /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; - D0BCFE3B18AEBDA2004A7AAE /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; - D0BCFE3D18AEBDA2004A7AAE /* GLKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLKit.framework; path = System/Library/Frameworks/GLKit.framework; sourceTree = SDKROOT; }; - D0BCFE3F18AEBDA2004A7AAE /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; }; - D0BCFE4318AEBDA2004A7AAE /* godot_ios-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "godot_ios-Info.plist"; sourceTree = ""; }; - D0BCFE4518AEBDA2004A7AAE /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; - D0BCFE4918AEBDA2004A7AAE /* godot_ios-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "godot_ios-Prefix.pch"; sourceTree = ""; }; - D0BCFE6018AEBDA3004A7AAE /* godot_iosTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = godot_iosTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; - D0BCFE6118AEBDA3004A7AAE /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; - D0BCFE6918AEBDA3004A7AAE /* godot_iosTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "godot_iosTests-Info.plist"; sourceTree = ""; }; - D0BCFE6B18AEBDA3004A7AAE /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; - D0BCFE6D18AEBDA3004A7AAE /* godot_iosTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = godot_iosTests.m; sourceTree = ""; }; - D0BCFE7718AEBFEB004A7AAE /* data.pck */ = {isa = PBXFileReference; lastKnownFileType = file; path = data.pck; sourceTree = ""; }; - D0BCFE7918AEC06A004A7AAE /* godot_opt.iphone */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; path = godot_opt.iphone; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - D0BCFE3118AEBDA2004A7AAE /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - D0BCFE4018AEBDA2004A7AAE /* OpenGLES.framework in Frameworks */, - D0BCFE3A18AEBDA2004A7AAE /* CoreGraphics.framework in Frameworks */, - D0BCFE3C18AEBDA2004A7AAE /* UIKit.framework in Frameworks */, - D0BCFE3E18AEBDA2004A7AAE /* GLKit.framework in Frameworks */, - D0BCFE3818AEBDA2004A7AAE /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D0BCFE5D18AEBDA3004A7AAE /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - D0BCFE6218AEBDA3004A7AAE /* XCTest.framework in Frameworks */, - D0BCFE6418AEBDA3004A7AAE /* UIKit.framework in Frameworks */, - D0BCFE6318AEBDA3004A7AAE /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - D0BCFE2B18AEBDA2004A7AAE = { - isa = PBXGroup; - children = ( - D0BCFE7918AEC06A004A7AAE /* godot_opt.iphone */, - D0BCFE7718AEBFEB004A7AAE /* data.pck */, - D0BCFE4118AEBDA2004A7AAE /* godot_ios */, - D0BCFE6718AEBDA3004A7AAE /* godot_iosTests */, - D0BCFE3618AEBDA2004A7AAE /* Frameworks */, - D0BCFE3518AEBDA2004A7AAE /* Products */, - ); - sourceTree = ""; - }; - D0BCFE3518AEBDA2004A7AAE /* Products */ = { - isa = PBXGroup; - children = ( - D0BCFE3418AEBDA2004A7AAE /* godot_ios.app */, - D0BCFE6018AEBDA3004A7AAE /* godot_iosTests.xctest */, - ); - name = Products; - sourceTree = ""; - }; - D0BCFE3618AEBDA2004A7AAE /* Frameworks */ = { - isa = PBXGroup; - children = ( - D0BCFE3718AEBDA2004A7AAE /* Foundation.framework */, - D0BCFE3918AEBDA2004A7AAE /* CoreGraphics.framework */, - D0BCFE3B18AEBDA2004A7AAE /* UIKit.framework */, - D0BCFE3D18AEBDA2004A7AAE /* GLKit.framework */, - D0BCFE3F18AEBDA2004A7AAE /* OpenGLES.framework */, - D0BCFE6118AEBDA3004A7AAE /* XCTest.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - D0BCFE4118AEBDA2004A7AAE /* godot_ios */ = { - isa = PBXGroup; - children = ( - D0BCFE4218AEBDA2004A7AAE /* Supporting Files */, - ); - path = godot_ios; - sourceTree = ""; - }; - D0BCFE4218AEBDA2004A7AAE /* Supporting Files */ = { - isa = PBXGroup; - children = ( - D0BCFE4318AEBDA2004A7AAE /* godot_ios-Info.plist */, - D0BCFE4418AEBDA2004A7AAE /* InfoPlist.strings */, - D0BCFE4918AEBDA2004A7AAE /* godot_ios-Prefix.pch */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; - D0BCFE6718AEBDA3004A7AAE /* godot_iosTests */ = { - isa = PBXGroup; - children = ( - D0BCFE6D18AEBDA3004A7AAE /* godot_iosTests.m */, - D0BCFE6818AEBDA3004A7AAE /* Supporting Files */, - ); - path = godot_iosTests; - sourceTree = ""; - }; - D0BCFE6818AEBDA3004A7AAE /* Supporting Files */ = { - isa = PBXGroup; - children = ( - D0BCFE6918AEBDA3004A7AAE /* godot_iosTests-Info.plist */, - D0BCFE6A18AEBDA3004A7AAE /* InfoPlist.strings */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - D0BCFE3318AEBDA2004A7AAE /* godot_ios */ = { - isa = PBXNativeTarget; - buildConfigurationList = D0BCFE7118AEBDA3004A7AAE /* Build configuration list for PBXNativeTarget "godot_ios" */; - buildPhases = ( - D0BCFE3018AEBDA2004A7AAE /* Sources */, - D0BCFE3118AEBDA2004A7AAE /* Frameworks */, - D0BCFE3218AEBDA2004A7AAE /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = godot_ios; - productName = godot_ios; - productReference = D0BCFE3418AEBDA2004A7AAE /* godot_ios.app */; - productType = "com.apple.product-type.application"; - }; - D0BCFE5F18AEBDA3004A7AAE /* godot_iosTests */ = { - isa = PBXNativeTarget; - buildConfigurationList = D0BCFE7418AEBDA3004A7AAE /* Build configuration list for PBXNativeTarget "godot_iosTests" */; - buildPhases = ( - D0BCFE5C18AEBDA3004A7AAE /* Sources */, - D0BCFE5D18AEBDA3004A7AAE /* Frameworks */, - D0BCFE5E18AEBDA3004A7AAE /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - D0BCFE6618AEBDA3004A7AAE /* PBXTargetDependency */, - ); - name = godot_iosTests; - productName = godot_iosTests; - productReference = D0BCFE6018AEBDA3004A7AAE /* godot_iosTests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - D0BCFE2C18AEBDA2004A7AAE /* Project object */ = { - isa = PBXProject; - attributes = { - LastUpgradeCheck = 0500; - ORGANIZATIONNAME = GodotEngine; - TargetAttributes = { - D0BCFE5F18AEBDA3004A7AAE = { - TestTargetID = D0BCFE3318AEBDA2004A7AAE; - }; - }; - }; - buildConfigurationList = D0BCFE2F18AEBDA2004A7AAE /* Build configuration list for PBXProject "godot_ios" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = D0BCFE2B18AEBDA2004A7AAE; - productRefGroup = D0BCFE3518AEBDA2004A7AAE /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - D0BCFE3318AEBDA2004A7AAE /* godot_ios */, - D0BCFE5F18AEBDA3004A7AAE /* godot_iosTests */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - D0BCFE3218AEBDA2004A7AAE /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - D0BCFE7818AEBFEB004A7AAE /* data.pck in Resources */, - D0BCFE4618AEBDA2004A7AAE /* InfoPlist.strings in Resources */, - D0BCFE7A18AEC06A004A7AAE /* godot_opt.iphone in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D0BCFE5E18AEBDA3004A7AAE /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - D0BCFE6C18AEBDA3004A7AAE /* InfoPlist.strings in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - D0BCFE3018AEBDA2004A7AAE /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D0BCFE5C18AEBDA3004A7AAE /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - D0BCFE6E18AEBDA3004A7AAE /* godot_iosTests.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - D0BCFE6618AEBDA3004A7AAE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = D0BCFE3318AEBDA2004A7AAE /* godot_ios */; - targetProxy = D0BCFE6518AEBDA3004A7AAE /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin PBXVariantGroup section */ - D0BCFE4418AEBDA2004A7AAE /* InfoPlist.strings */ = { - isa = PBXVariantGroup; - children = ( - D0BCFE4518AEBDA2004A7AAE /* en */, - ); - name = InfoPlist.strings; - sourceTree = ""; - }; - D0BCFE6A18AEBDA3004A7AAE /* InfoPlist.strings */ = { - isa = PBXVariantGroup; - children = ( - D0BCFE6B18AEBDA3004A7AAE /* en */, - ); - name = InfoPlist.strings; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - D0BCFE6F18AEBDA3004A7AAE /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)"; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - D0BCFE7018AEBDA3004A7AAE /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)"; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = YES; - ENABLE_NS_ASSERTIONS = NO; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - D0BCFE7218AEBDA3004A7AAE /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = "godot_ios/godot_ios-Prefix.pch"; - INFOPLIST_FILE = "godot_ios/godot_ios-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 4.3; - PRODUCT_NAME = "$(TARGET_NAME)"; - TARGETED_DEVICE_FAMILY = "1,2"; - VALID_ARCHS = "armv7 armv7s"; - WRAPPER_EXTENSION = app; - }; - name = Debug; - }; - D0BCFE7318AEBDA3004A7AAE /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = "godot_ios/godot_ios-Prefix.pch"; - INFOPLIST_FILE = "godot_ios/godot_ios-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 4.3; - PRODUCT_NAME = "$(TARGET_NAME)"; - TARGETED_DEVICE_FAMILY = "1,2"; - VALID_ARCHS = "armv7 armv7s"; - WRAPPER_EXTENSION = app; - }; - name = Release; - }; - D0BCFE7518AEBDA3004A7AAE /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)"; - BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/godot_ios.app/godot_ios"; - FRAMEWORK_SEARCH_PATHS = ( - "$(SDKROOT)/Developer/Library/Frameworks", - "$(inherited)", - "$(DEVELOPER_FRAMEWORKS_DIR)", - ); - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = "godot_ios/godot_ios-Prefix.pch"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - INFOPLIST_FILE = "godot_iosTests/godot_iosTests-Info.plist"; - PRODUCT_NAME = "$(TARGET_NAME)"; - TEST_HOST = "$(BUNDLE_LOADER)"; - WRAPPER_EXTENSION = xctest; - }; - name = Debug; - }; - D0BCFE7618AEBDA3004A7AAE /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)"; - BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/godot_ios.app/godot_ios"; - FRAMEWORK_SEARCH_PATHS = ( - "$(SDKROOT)/Developer/Library/Frameworks", - "$(inherited)", - "$(DEVELOPER_FRAMEWORKS_DIR)", - ); - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = "godot_ios/godot_ios-Prefix.pch"; - INFOPLIST_FILE = "godot_iosTests/godot_iosTests-Info.plist"; - PRODUCT_NAME = "$(TARGET_NAME)"; - TEST_HOST = "$(BUNDLE_LOADER)"; - WRAPPER_EXTENSION = xctest; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - D0BCFE2F18AEBDA2004A7AAE /* Build configuration list for PBXProject "godot_ios" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - D0BCFE6F18AEBDA3004A7AAE /* Debug */, - D0BCFE7018AEBDA3004A7AAE /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - D0BCFE7118AEBDA3004A7AAE /* Build configuration list for PBXNativeTarget "godot_ios" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - D0BCFE7218AEBDA3004A7AAE /* Debug */, - D0BCFE7318AEBDA3004A7AAE /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D0BCFE7418AEBDA3004A7AAE /* Build configuration list for PBXNativeTarget "godot_iosTests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - D0BCFE7518AEBDA3004A7AAE /* Debug */, - D0BCFE7618AEBDA3004A7AAE /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; -/* End XCConfigurationList section */ - }; - rootObject = D0BCFE2C18AEBDA2004A7AAE /* Project object */; -} diff --git a/tools/ios_xcode_template/godot_ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/tools/ios_xcode_template/godot_ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 3c9ba38bbe6..00000000000 --- a/tools/ios_xcode_template/godot_ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/tools/ios_xcode_template/godot_ios.xcodeproj/project.xcworkspace/xcuserdata/punto.xcuserdatad/UserInterfaceState.xcuserstate b/tools/ios_xcode_template/godot_ios.xcodeproj/project.xcworkspace/xcuserdata/punto.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index 7c338929ed5ff0f288dfd575aa5de39e0e9348c4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13553 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 WA7p+igkJ~=-%MvPR1JP*e*QmJ7~N9< diff --git a/tools/ios_xcode_template/godot_ios.xcodeproj/xcuserdata/punto.xcuserdatad/xcschemes/godot_ios.xcscheme b/tools/ios_xcode_template/godot_ios.xcodeproj/xcuserdata/punto.xcuserdatad/xcschemes/godot_ios.xcscheme deleted file mode 100644 index 19af55b4a28..00000000000 --- a/tools/ios_xcode_template/godot_ios.xcodeproj/xcuserdata/punto.xcuserdatad/xcschemes/godot_ios.xcscheme +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tools/ios_xcode_template/godot_ios.xcodeproj/xcuserdata/punto.xcuserdatad/xcschemes/xcschememanagement.plist b/tools/ios_xcode_template/godot_ios.xcodeproj/xcuserdata/punto.xcuserdatad/xcschemes/xcschememanagement.plist deleted file mode 100644 index 4a3a16cbdbf..00000000000 --- a/tools/ios_xcode_template/godot_ios.xcodeproj/xcuserdata/punto.xcuserdatad/xcschemes/xcschememanagement.plist +++ /dev/null @@ -1,27 +0,0 @@ - - - - - SchemeUserState - - godot_ios.xcscheme - - orderHint - 0 - - - SuppressBuildableAutocreation - - D0BCFE3318AEBDA2004A7AAE - - primary - - - D0BCFE5F18AEBDA3004A7AAE - - primary - - - - - diff --git a/tools/ios_xcode_template/godot_ios/en.lproj/InfoPlist.strings b/tools/ios_xcode_template/godot_ios/en.lproj/InfoPlist.strings deleted file mode 100644 index 477b28ff8f8..00000000000 --- a/tools/ios_xcode_template/godot_ios/en.lproj/InfoPlist.strings +++ /dev/null @@ -1,2 +0,0 @@ -/* Localized versions of Info.plist keys */ - diff --git a/tools/ios_xcode_template/godot_ios/godot_ios-Info.plist b/tools/ios_xcode_template/godot_ios/godot_ios-Info.plist deleted file mode 100644 index 357970920ab..00000000000 --- a/tools/ios_xcode_template/godot_ios/godot_ios-Info.plist +++ /dev/null @@ -1,47 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleDisplayName - ${PRODUCT_NAME} - CFBundleExecutable - godot_opt.iphone - CFBundleIdentifier - org.godotengine.${PRODUCT_NAME:rfc1034identifier} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - APPL - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1.0 - LSRequiresIPhoneOS - - UIRequiredDeviceCapabilities - - armv7 - - UIStatusBarHidden - - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UISupportedInterfaceOrientations~ipad - - UIInterfaceOrientationPortrait - UIInterfaceOrientationPortraitUpsideDown - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - - diff --git a/tools/ios_xcode_template/godot_ios/godot_ios-Prefix.pch b/tools/ios_xcode_template/godot_ios/godot_ios-Prefix.pch deleted file mode 100644 index 82a2bb45076..00000000000 --- a/tools/ios_xcode_template/godot_ios/godot_ios-Prefix.pch +++ /dev/null @@ -1,16 +0,0 @@ -// -// Prefix header -// -// The contents of this file are implicitly included at the beginning of every source file. -// - -#import - -#ifndef __IPHONE_5_0 -#warning "This project uses features only available in iOS SDK 5.0 and later." -#endif - -#ifdef __OBJC__ - #import - #import -#endif diff --git a/tools/ios_xcode_template/godot_ios/main.m b/tools/ios_xcode_template/godot_ios/main.m deleted file mode 100644 index 3e4ea5e129e..00000000000 --- a/tools/ios_xcode_template/godot_ios/main.m +++ /dev/null @@ -1,39 +0,0 @@ -/*************************************************************************/ -/* main.m */ -/*************************************************************************/ -/* This file is part of: */ -/* GODOT ENGINE */ -/* http://www.godotengine.org */ -/*************************************************************************/ -/* Copyright (c) 2007-2016 Juan Linietsky, Ariel Manzur. */ -/* */ -/* Permission is hereby granted, free of charge, to any person obtaining */ -/* a copy of this software and associated documentation files (the */ -/* "Software"), to deal in the Software without restriction, including */ -/* without limitation the rights to use, copy, modify, merge, publish, */ -/* distribute, sublicense, and/or sell copies of the Software, and to */ -/* permit persons to whom the Software is furnished to do so, subject to */ -/* the following conditions: */ -/* */ -/* The above copyright notice and this permission notice shall be */ -/* included in all copies or substantial portions of the Software. */ -/* */ -/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */ -/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */ -/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ -/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */ -/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */ -/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */ -/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -/*************************************************************************/ - -#import - -#import "AppDelegate.h" - -int main(int argc, char * argv[]) -{ - @autoreleasepool { - return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); - } -} diff --git a/tools/ios_xcode_template/godot_iosTests/en.lproj/InfoPlist.strings b/tools/ios_xcode_template/godot_iosTests/en.lproj/InfoPlist.strings deleted file mode 100644 index 477b28ff8f8..00000000000 --- a/tools/ios_xcode_template/godot_iosTests/en.lproj/InfoPlist.strings +++ /dev/null @@ -1,2 +0,0 @@ -/* Localized versions of Info.plist keys */ - diff --git a/tools/ios_xcode_template/godot_iosTests/godot_iosTests-Info.plist b/tools/ios_xcode_template/godot_iosTests/godot_iosTests-Info.plist deleted file mode 100644 index 0f69aa80ebe..00000000000 --- a/tools/ios_xcode_template/godot_iosTests/godot_iosTests-Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - org.godotengine.${PRODUCT_NAME:rfc1034identifier} - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1 - - diff --git a/tools/ios_xcode_template/godot_iosTests/godot_iosTests.m b/tools/ios_xcode_template/godot_iosTests/godot_iosTests.m deleted file mode 100644 index d9fac0a250f..00000000000 --- a/tools/ios_xcode_template/godot_iosTests/godot_iosTests.m +++ /dev/null @@ -1,55 +0,0 @@ -/*************************************************************************/ -/* godot_iosTests.m */ -/*************************************************************************/ -/* This file is part of: */ -/* GODOT ENGINE */ -/* http://www.godotengine.org */ -/*************************************************************************/ -/* Copyright (c) 2007-2016 Juan Linietsky, Ariel Manzur. */ -/* */ -/* Permission is hereby granted, free of charge, to any person obtaining */ -/* a copy of this software and associated documentation files (the */ -/* "Software"), to deal in the Software without restriction, including */ -/* without limitation the rights to use, copy, modify, merge, publish, */ -/* distribute, sublicense, and/or sell copies of the Software, and to */ -/* permit persons to whom the Software is furnished to do so, subject to */ -/* the following conditions: */ -/* */ -/* The above copyright notice and this permission notice shall be */ -/* included in all copies or substantial portions of the Software. */ -/* */ -/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */ -/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */ -/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ -/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */ -/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */ -/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */ -/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -/*************************************************************************/ - -#import - -@interface godot_iosTests : XCTestCase - -@end - -@implementation godot_iosTests - -- (void)setUp -{ - [super setUp]; - // Put setup code here. This method is called before the invocation of each test method in the class. -} - -- (void)tearDown -{ - // Put teardown code here. This method is called after the invocation of each test method in the class. - [super tearDown]; -} - -- (void)testExample -{ - XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__); -} - -@end