From fc0a56711208fd82cb09289d0aaf838bdc9910cb Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sun, 7 Oct 2018 20:01:08 -0700 Subject: [PATCH] Reorganize existing app files into macOS folder - Add an iOS target --- Metaballs-iOS/AppDelegate.swift | 46 +++++ .../AppIcon.appiconset/Contents.json | 98 ++++++++++ Metaballs-iOS/Assets.xcassets/Contents.json | 6 + .../Base.lproj/LaunchScreen.storyboard | 25 +++ Metaballs-iOS/Base.lproj/Main.storyboard | 24 +++ Metaballs-iOS/Info.plist | 45 +++++ Metaballs-iOS/ViewController.swift | 20 ++ .../AppDelegate.swift | 0 .../AppIcon.appiconset/Contents.json | 0 .../Base.lproj/Main.storyboard | 0 {Metaballs => Metaballs-macOS}/Info.plist | 0 .../ViewController.swift | 0 Metaballs.xcodeproj/project.pbxproj | 173 ++++++++++++++++-- 13 files changed, 425 insertions(+), 12 deletions(-) create mode 100644 Metaballs-iOS/AppDelegate.swift create mode 100644 Metaballs-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 Metaballs-iOS/Assets.xcassets/Contents.json create mode 100644 Metaballs-iOS/Base.lproj/LaunchScreen.storyboard create mode 100644 Metaballs-iOS/Base.lproj/Main.storyboard create mode 100644 Metaballs-iOS/Info.plist create mode 100644 Metaballs-iOS/ViewController.swift rename {Metaballs => Metaballs-macOS}/AppDelegate.swift (100%) rename {Metaballs => Metaballs-macOS}/Assets.xcassets/AppIcon.appiconset/Contents.json (100%) rename {Metaballs => Metaballs-macOS}/Base.lproj/Main.storyboard (100%) rename {Metaballs => Metaballs-macOS}/Info.plist (100%) rename {Metaballs => Metaballs-macOS}/ViewController.swift (100%) diff --git a/Metaballs-iOS/AppDelegate.swift b/Metaballs-iOS/AppDelegate.swift new file mode 100644 index 0000000..04d5cbc --- /dev/null +++ b/Metaballs-iOS/AppDelegate.swift @@ -0,0 +1,46 @@ +// +// AppDelegate.swift +// Metaballs-iOS +// +// Created by Eryn Wells on 10/7/18. +// Copyright © 2018 Eryn Wells. All rights reserved. +// + +import UIKit + +@UIApplicationMain +class AppDelegate: UIResponder, UIApplicationDelegate { + + var window: UIWindow? + + + func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { + // Override point for customization after application launch. + return true + } + + func applicationWillResignActive(_ application: UIApplication) { + // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. + // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game. + } + + func applicationDidEnterBackground(_ application: UIApplication) { + // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. + // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. + } + + func applicationWillEnterForeground(_ application: UIApplication) { + // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background. + } + + func applicationDidBecomeActive(_ application: UIApplication) { + // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. + } + + func applicationWillTerminate(_ application: UIApplication) { + // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. + } + + +} + diff --git a/Metaballs-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json b/Metaballs-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..d8db8d6 --- /dev/null +++ b/Metaballs-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,98 @@ +{ + "images" : [ + { + "idiom" : "iphone", + "size" : "20x20", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "20x20", + "scale" : "3x" + }, + { + "idiom" : "iphone", + "size" : "29x29", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "29x29", + "scale" : "3x" + }, + { + "idiom" : "iphone", + "size" : "40x40", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "40x40", + "scale" : "3x" + }, + { + "idiom" : "iphone", + "size" : "60x60", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "60x60", + "scale" : "3x" + }, + { + "idiom" : "ipad", + "size" : "20x20", + "scale" : "1x" + }, + { + "idiom" : "ipad", + "size" : "20x20", + "scale" : "2x" + }, + { + "idiom" : "ipad", + "size" : "29x29", + "scale" : "1x" + }, + { + "idiom" : "ipad", + "size" : "29x29", + "scale" : "2x" + }, + { + "idiom" : "ipad", + "size" : "40x40", + "scale" : "1x" + }, + { + "idiom" : "ipad", + "size" : "40x40", + "scale" : "2x" + }, + { + "idiom" : "ipad", + "size" : "76x76", + "scale" : "1x" + }, + { + "idiom" : "ipad", + "size" : "76x76", + "scale" : "2x" + }, + { + "idiom" : "ipad", + "size" : "83.5x83.5", + "scale" : "2x" + }, + { + "idiom" : "ios-marketing", + "size" : "1024x1024", + "scale" : "1x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} \ No newline at end of file diff --git a/Metaballs-iOS/Assets.xcassets/Contents.json b/Metaballs-iOS/Assets.xcassets/Contents.json new file mode 100644 index 0000000..da4a164 --- /dev/null +++ b/Metaballs-iOS/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + } +} \ No newline at end of file diff --git a/Metaballs-iOS/Base.lproj/LaunchScreen.storyboard b/Metaballs-iOS/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..bfa3612 --- /dev/null +++ b/Metaballs-iOS/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Metaballs-iOS/Base.lproj/Main.storyboard b/Metaballs-iOS/Base.lproj/Main.storyboard new file mode 100644 index 0000000..f1bcf38 --- /dev/null +++ b/Metaballs-iOS/Base.lproj/Main.storyboard @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Metaballs-iOS/Info.plist b/Metaballs-iOS/Info.plist new file mode 100644 index 0000000..16be3b6 --- /dev/null +++ b/Metaballs-iOS/Info.plist @@ -0,0 +1,45 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + LSRequiresIPhoneOS + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UIRequiredDeviceCapabilities + + armv7 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + + diff --git a/Metaballs-iOS/ViewController.swift b/Metaballs-iOS/ViewController.swift new file mode 100644 index 0000000..6a198f0 --- /dev/null +++ b/Metaballs-iOS/ViewController.swift @@ -0,0 +1,20 @@ +// +// ViewController.swift +// Metaballs-iOS +// +// Created by Eryn Wells on 10/7/18. +// Copyright © 2018 Eryn Wells. All rights reserved. +// + +import UIKit + +class ViewController: UIViewController { + + override func viewDidLoad() { + super.viewDidLoad() + // Do any additional setup after loading the view, typically from a nib. + } + + +} + diff --git a/Metaballs/AppDelegate.swift b/Metaballs-macOS/AppDelegate.swift similarity index 100% rename from Metaballs/AppDelegate.swift rename to Metaballs-macOS/AppDelegate.swift diff --git a/Metaballs/Assets.xcassets/AppIcon.appiconset/Contents.json b/Metaballs-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json similarity index 100% rename from Metaballs/Assets.xcassets/AppIcon.appiconset/Contents.json rename to Metaballs-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json diff --git a/Metaballs/Base.lproj/Main.storyboard b/Metaballs-macOS/Base.lproj/Main.storyboard similarity index 100% rename from Metaballs/Base.lproj/Main.storyboard rename to Metaballs-macOS/Base.lproj/Main.storyboard diff --git a/Metaballs/Info.plist b/Metaballs-macOS/Info.plist similarity index 100% rename from Metaballs/Info.plist rename to Metaballs-macOS/Info.plist diff --git a/Metaballs/ViewController.swift b/Metaballs-macOS/ViewController.swift similarity index 100% rename from Metaballs/ViewController.swift rename to Metaballs-macOS/ViewController.swift diff --git a/Metaballs.xcodeproj/project.pbxproj b/Metaballs.xcodeproj/project.pbxproj index 76872fa..24fa2af 100644 --- a/Metaballs.xcodeproj/project.pbxproj +++ b/Metaballs.xcodeproj/project.pbxproj @@ -31,6 +31,11 @@ C0FF7C9B2168062C0081B781 /* PreferencesViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C091616F1F3F5AE6009C4263 /* PreferencesViewController.swift */; }; C0FF7C9D216A6DE00081B781 /* Math.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0FF7C9C216A6DE00081B781 /* Math.swift */; }; C0FF7C9E216A6DE00081B781 /* Math.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0FF7C9C216A6DE00081B781 /* Math.swift */; }; + C0FF7CA6216AFD840081B781 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0FF7CA5216AFD840081B781 /* AppDelegate.swift */; }; + C0FF7CA8216AFD840081B781 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0FF7CA7216AFD840081B781 /* ViewController.swift */; }; + C0FF7CAB216AFD840081B781 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C0FF7CA9216AFD840081B781 /* Main.storyboard */; }; + C0FF7CAD216AFD890081B781 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C0FF7CAC216AFD890081B781 /* Assets.xcassets */; }; + C0FF7CB0216AFD890081B781 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C0FF7CAE216AFD890081B781 /* LaunchScreen.storyboard */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -81,6 +86,13 @@ C0CE7BFF1F362C3F001516B6 /* Geometry.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Geometry.swift; sourceTree = ""; }; C0DF1D781F3789DC0038B0A0 /* Memory.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Memory.swift; sourceTree = ""; }; C0FF7C9C216A6DE00081B781 /* Math.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Math.swift; sourceTree = ""; }; + C0FF7CA3216AFD840081B781 /* Metaballs.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Metaballs.app; sourceTree = BUILT_PRODUCTS_DIR; }; + C0FF7CA5216AFD840081B781 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + C0FF7CA7216AFD840081B781 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; + C0FF7CAA216AFD840081B781 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + C0FF7CAC216AFD890081B781 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + C0FF7CAF216AFD890081B781 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + C0FF7CB1216AFD890081B781 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -107,6 +119,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + C0FF7CA0216AFD840081B781 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ @@ -123,7 +142,8 @@ C0BBE35E1F2E816500E68524 = { isa = PBXGroup; children = ( - C0BBE3691F2E816500E68524 /* Metaballs */, + C0BBE3691F2E816500E68524 /* Metaballs-macOS */, + C0FF7CA4216AFD840081B781 /* Metaballs-iOS */, C0B906DC1F455AD000B5F89B /* Screensaver */, C0BBE38D1F2E81B600E68524 /* Shared */, C0BBE37B1F2E816500E68524 /* MetaballsTests */, @@ -139,11 +159,12 @@ C0BBE3671F2E816500E68524 /* Metaballs.app */, C0BBE3781F2E816500E68524 /* MetaballsTests.xctest */, C0B906DB1F455AD000B5F89B /* MetaballsSaver.saver */, + C0FF7CA3216AFD840081B781 /* Metaballs.app */, ); name = Products; sourceTree = ""; }; - C0BBE3691F2E816500E68524 /* Metaballs */ = { + C0BBE3691F2E816500E68524 /* Metaballs-macOS */ = { isa = PBXGroup; children = ( C0BBE36A1F2E816500E68524 /* AppDelegate.swift */, @@ -152,7 +173,7 @@ C0BBE3701F2E816500E68524 /* Main.storyboard */, C0BBE3731F2E816500E68524 /* Info.plist */, ); - path = Metaballs; + path = "Metaballs-macOS"; sourceTree = ""; }; C0BBE37B1F2E816500E68524 /* MetaballsTests */ = { @@ -198,6 +219,19 @@ name = Frameworks; sourceTree = ""; }; + C0FF7CA4216AFD840081B781 /* Metaballs-iOS */ = { + isa = PBXGroup; + children = ( + C0FF7CA5216AFD840081B781 /* AppDelegate.swift */, + C0FF7CA7216AFD840081B781 /* ViewController.swift */, + C0FF7CA9216AFD840081B781 /* Main.storyboard */, + C0FF7CAC216AFD890081B781 /* Assets.xcassets */, + C0FF7CAE216AFD890081B781 /* LaunchScreen.storyboard */, + C0FF7CB1216AFD890081B781 /* Info.plist */, + ); + path = "Metaballs-iOS"; + sourceTree = ""; + }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ @@ -230,9 +264,9 @@ productReference = C0B906DB1F455AD000B5F89B /* MetaballsSaver.saver */; productType = "com.apple.product-type.bundle"; }; - C0BBE3661F2E816500E68524 /* Metaballs */ = { + C0BBE3661F2E816500E68524 /* Metaballs-macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = C0BBE3811F2E816500E68524 /* Build configuration list for PBXNativeTarget "Metaballs" */; + buildConfigurationList = C0BBE3811F2E816500E68524 /* Build configuration list for PBXNativeTarget "Metaballs-macOS" */; buildPhases = ( C0BBE3631F2E816500E68524 /* Sources */, C0BBE3641F2E816500E68524 /* Frameworks */, @@ -242,7 +276,7 @@ ); dependencies = ( ); - name = Metaballs; + name = "Metaballs-macOS"; productName = Metaballs; productReference = C0BBE3671F2E816500E68524 /* Metaballs.app */; productType = "com.apple.product-type.application"; @@ -265,13 +299,30 @@ productReference = C0BBE3781F2E816500E68524 /* MetaballsTests.xctest */; productType = "com.apple.product-type.bundle.unit-test"; }; + C0FF7CA2216AFD840081B781 /* Metaballs-iOS */ = { + isa = PBXNativeTarget; + buildConfigurationList = C0FF7CB2216AFD890081B781 /* Build configuration list for PBXNativeTarget "Metaballs-iOS" */; + buildPhases = ( + C0FF7C9F216AFD840081B781 /* Sources */, + C0FF7CA0216AFD840081B781 /* Frameworks */, + C0FF7CA1216AFD840081B781 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Metaballs-iOS"; + productName = "Metaballs-iOS"; + productReference = C0FF7CA3216AFD840081B781 /* Metaballs.app */; + productType = "com.apple.product-type.application"; + }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ C0BBE35F1F2E816500E68524 /* Project object */ = { isa = PBXProject; attributes = { - LastSwiftUpdateCheck = 0830; + LastSwiftUpdateCheck = 1000; LastUpgradeCheck = 1000; ORGANIZATIONNAME = "Eryn Wells"; TargetAttributes = { @@ -294,6 +345,11 @@ ProvisioningStyle = Automatic; TestTargetID = C0BBE3661F2E816500E68524; }; + C0FF7CA2216AFD840081B781 = { + CreatedOnToolsVersion = 10.0; + DevelopmentTeam = 78372RE6B4; + ProvisioningStyle = Automatic; + }; }; }; buildConfigurationList = C0BBE3621F2E816500E68524 /* Build configuration list for PBXProject "Metaballs" */; @@ -309,7 +365,8 @@ projectDirPath = ""; projectRoot = ""; targets = ( - C0BBE3661F2E816500E68524 /* Metaballs */, + C0BBE3661F2E816500E68524 /* Metaballs-macOS */, + C0FF7CA2216AFD840081B781 /* Metaballs-iOS */, C0BBE3771F2E816500E68524 /* MetaballsTests */, C0B906DA1F455AD000B5F89B /* MetaballsSaver */, ); @@ -340,6 +397,16 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + C0FF7CA1216AFD840081B781 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + C0FF7CB0216AFD890081B781 /* LaunchScreen.storyboard in Resources */, + C0FF7CAD216AFD890081B781 /* Assets.xcassets in Resources */, + C0FF7CAB216AFD840081B781 /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ @@ -384,12 +451,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + C0FF7C9F216AFD840081B781 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + C0FF7CA8216AFD840081B781 /* ViewController.swift in Sources */, + C0FF7CA6216AFD840081B781 /* AppDelegate.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ C0BBE37A1F2E816500E68524 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = C0BBE3661F2E816500E68524 /* Metaballs */; + target = C0BBE3661F2E816500E68524 /* Metaballs-macOS */; targetProxy = C0BBE3791F2E816500E68524 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ @@ -403,6 +479,22 @@ name = Main.storyboard; sourceTree = ""; }; + C0FF7CA9216AFD840081B781 /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + C0FF7CAA216AFD840081B781 /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + C0FF7CAE216AFD890081B781 /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + C0FF7CAF216AFD890081B781 /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; /* End PBXVariantGroup section */ /* Begin XCBuildConfiguration section */ @@ -562,7 +654,7 @@ INFOPLIST_FILE = Metaballs/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = me.erynwells.Metaballs; - PRODUCT_NAME = "$(TARGET_NAME)"; + PRODUCT_NAME = Metaballs; SWIFT_SWIFT3_OBJC_INFERENCE = Default; SWIFT_VERSION = 4.2; }; @@ -577,7 +669,7 @@ INFOPLIST_FILE = Metaballs/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = me.erynwells.Metaballs; - PRODUCT_NAME = "$(TARGET_NAME)"; + PRODUCT_NAME = Metaballs; SWIFT_SWIFT3_OBJC_INFERENCE = Default; SWIFT_VERSION = 4.2; }; @@ -617,6 +709,54 @@ }; name = Release; }; + C0FF7CB3216AFD890081B781 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CODE_SIGN_IDENTITY = "iPhone Developer"; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = 78372RE6B4; + GCC_C_LANGUAGE_STANDARD = gnu11; + INFOPLIST_FILE = "Metaballs-iOS/Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + PRODUCT_BUNDLE_IDENTIFIER = "me.erynwells.Metaballs-iOS"; + PRODUCT_NAME = Metaballs; + SDKROOT = iphoneos; + SWIFT_VERSION = 4.2; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + C0FF7CB4216AFD890081B781 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CODE_SIGN_IDENTITY = "iPhone Developer"; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = 78372RE6B4; + GCC_C_LANGUAGE_STANDARD = gnu11; + INFOPLIST_FILE = "Metaballs-iOS/Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + MTL_FAST_MATH = YES; + PRODUCT_BUNDLE_IDENTIFIER = "me.erynwells.Metaballs-iOS"; + PRODUCT_NAME = Metaballs; + SDKROOT = iphoneos; + SWIFT_VERSION = 4.2; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ @@ -638,7 +778,7 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C0BBE3811F2E816500E68524 /* Build configuration list for PBXNativeTarget "Metaballs" */ = { + C0BBE3811F2E816500E68524 /* Build configuration list for PBXNativeTarget "Metaballs-macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( C0BBE3821F2E816500E68524 /* Debug */, @@ -656,6 +796,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + C0FF7CB2216AFD890081B781 /* Build configuration list for PBXNativeTarget "Metaballs-iOS" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C0FF7CB3216AFD890081B781 /* Debug */, + C0FF7CB4216AFD890081B781 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; /* End XCConfigurationList section */ }; rootObject = C0BBE35F1F2E816500E68524 /* Project object */;