From 97031ecbfab5a6bf52004265f7ea5095a55a7fdf Mon Sep 17 00:00:00 2001 From: Csaba Date: Mon, 26 Mar 2018 12:47:44 +0200 Subject: [PATCH] Carthage support --- .gitignore | 3 + Cupcake.xcodeproj/project.pbxproj | 395 ++++++++++++++++++ .../contents.xcworkspacedata | 7 + Cupcake/Cupcake.h | 19 + Cupcake/Info.plist | 24 ++ 5 files changed, 448 insertions(+) create mode 100644 .gitignore create mode 100644 Cupcake.xcodeproj/project.pbxproj create mode 100644 Cupcake.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 Cupcake/Cupcake.h create mode 100644 Cupcake/Info.plist diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4c74ab7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +Build +Cupcake.xcodeproj/xcuserdata +Cupcake.xcodeproj/project.xcworkspace/xcuserdata diff --git a/Cupcake.xcodeproj/project.pbxproj b/Cupcake.xcodeproj/project.pbxproj new file mode 100644 index 0000000..df1d31a --- /dev/null +++ b/Cupcake.xcodeproj/project.pbxproj @@ -0,0 +1,395 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 48; + objects = { + +/* Begin PBXBuildFile section */ + C01A2261206901F20038347B /* Cupcake.h in Headers */ = {isa = PBXBuildFile; fileRef = C01A225F206901F20038347B /* Cupcake.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C01A229D206906E60038347B /* Styles.swift in Sources */ = {isa = PBXBuildFile; fileRef = C01A228B206906E40038347B /* Styles.swift */; }; + C01A229E206906E60038347B /* Alert.swift in Sources */ = {isa = PBXBuildFile; fileRef = C01A228C206906E40038347B /* Alert.swift */; }; + C01A229F206906E60038347B /* __Private__Implementations__.swift in Sources */ = {isa = PBXBuildFile; fileRef = C01A228D206906E50038347B /* __Private__Implementations__.swift */; }; + C01A22A0206906E60038347B /* CPKStackView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C01A228E206906E50038347B /* CPKStackView.swift */; }; + C01A22A1206906E60038347B /* Font.swift in Sources */ = {isa = PBXBuildFile; fileRef = C01A228F206906E50038347B /* Font.swift */; }; + C01A22A2206906E60038347B /* Str.swift in Sources */ = {isa = PBXBuildFile; fileRef = C01A2290206906E50038347B /* Str.swift */; }; + C01A22A3206906E60038347B /* Cons.swift in Sources */ = {isa = PBXBuildFile; fileRef = C01A2291206906E50038347B /* Cons.swift */; }; + C01A22A4206906E60038347B /* ImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C01A2292206906E50038347B /* ImageView.swift */; }; + C01A22A5206906E60038347B /* Img.swift in Sources */ = {isa = PBXBuildFile; fileRef = C01A2293206906E50038347B /* Img.swift */; }; + C01A22A6206906E60038347B /* Label.swift in Sources */ = {isa = PBXBuildFile; fileRef = C01A2294206906E50038347B /* Label.swift */; }; + C01A22A7206906E60038347B /* Button.swift in Sources */ = {isa = PBXBuildFile; fileRef = C01A2295206906E50038347B /* Button.swift */; }; + C01A22A8206906E60038347B /* Stack.swift in Sources */ = {isa = PBXBuildFile; fileRef = C01A2296206906E50038347B /* Stack.swift */; }; + C01A22A9206906E60038347B /* TextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = C01A2297206906E50038347B /* TextField.swift */; }; + C01A22AA206906E60038347B /* Color.swift in Sources */ = {isa = PBXBuildFile; fileRef = C01A2298206906E50038347B /* Color.swift */; }; + C01A22AB206906E60038347B /* View.swift in Sources */ = {isa = PBXBuildFile; fileRef = C01A2299206906E60038347B /* View.swift */; }; + C01A22AC206906E60038347B /* StaticTable.swift in Sources */ = {isa = PBXBuildFile; fileRef = C01A229A206906E60038347B /* StaticTable.swift */; }; + C01A22AD206906E60038347B /* TextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C01A229B206906E60038347B /* TextView.swift */; }; + C01A22AE206906E60038347B /* AttStr.swift in Sources */ = {isa = PBXBuildFile; fileRef = C01A229C206906E60038347B /* AttStr.swift */; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + C01A225C206901F20038347B /* Cupcake.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Cupcake.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + C01A225F206901F20038347B /* Cupcake.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Cupcake.h; sourceTree = ""; }; + C01A2260206901F20038347B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + C01A228B206906E40038347B /* Styles.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Styles.swift; sourceTree = ""; }; + C01A228C206906E40038347B /* Alert.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Alert.swift; sourceTree = ""; }; + C01A228D206906E50038347B /* __Private__Implementations__.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = __Private__Implementations__.swift; sourceTree = ""; }; + C01A228E206906E50038347B /* CPKStackView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CPKStackView.swift; sourceTree = ""; }; + C01A228F206906E50038347B /* Font.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Font.swift; sourceTree = ""; }; + C01A2290206906E50038347B /* Str.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Str.swift; sourceTree = ""; }; + C01A2291206906E50038347B /* Cons.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Cons.swift; sourceTree = ""; }; + C01A2292206906E50038347B /* ImageView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ImageView.swift; sourceTree = ""; }; + C01A2293206906E50038347B /* Img.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Img.swift; sourceTree = ""; }; + C01A2294206906E50038347B /* Label.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Label.swift; sourceTree = ""; }; + C01A2295206906E50038347B /* Button.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Button.swift; sourceTree = ""; }; + C01A2296206906E50038347B /* Stack.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Stack.swift; sourceTree = ""; }; + C01A2297206906E50038347B /* TextField.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TextField.swift; sourceTree = ""; }; + C01A2298206906E50038347B /* Color.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Color.swift; sourceTree = ""; }; + C01A2299206906E60038347B /* View.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = View.swift; sourceTree = ""; }; + C01A229A206906E60038347B /* StaticTable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StaticTable.swift; sourceTree = ""; }; + C01A229B206906E60038347B /* TextView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TextView.swift; sourceTree = ""; }; + C01A229C206906E60038347B /* AttStr.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AttStr.swift; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + C01A2258206901F20038347B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + C01A2252206901F20038347B = { + isa = PBXGroup; + children = ( + C01A225E206901F20038347B /* Cupcake */, + C01A225D206901F20038347B /* Products */, + ); + sourceTree = ""; + }; + C01A225D206901F20038347B /* Products */ = { + isa = PBXGroup; + children = ( + C01A225C206901F20038347B /* Cupcake.framework */, + ); + name = Products; + sourceTree = ""; + }; + C01A225E206901F20038347B /* Cupcake */ = { + isa = PBXGroup; + children = ( + C01A228D206906E50038347B /* __Private__Implementations__.swift */, + C01A228C206906E40038347B /* Alert.swift */, + C01A229C206906E60038347B /* AttStr.swift */, + C01A2295206906E50038347B /* Button.swift */, + C01A2298206906E50038347B /* Color.swift */, + C01A2291206906E50038347B /* Cons.swift */, + C01A228E206906E50038347B /* CPKStackView.swift */, + C01A228F206906E50038347B /* Font.swift */, + C01A2292206906E50038347B /* ImageView.swift */, + C01A2293206906E50038347B /* Img.swift */, + C01A2294206906E50038347B /* Label.swift */, + C01A2296206906E50038347B /* Stack.swift */, + C01A229A206906E60038347B /* StaticTable.swift */, + C01A2290206906E50038347B /* Str.swift */, + C01A228B206906E40038347B /* Styles.swift */, + C01A2297206906E50038347B /* TextField.swift */, + C01A229B206906E60038347B /* TextView.swift */, + C01A2299206906E60038347B /* View.swift */, + C01A225F206901F20038347B /* Cupcake.h */, + C01A2260206901F20038347B /* Info.plist */, + ); + path = Cupcake; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + C01A2259206901F20038347B /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + C01A2261206901F20038347B /* Cupcake.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + C01A225B206901F20038347B /* Cupcake */ = { + isa = PBXNativeTarget; + buildConfigurationList = C01A2264206901F20038347B /* Build configuration list for PBXNativeTarget "Cupcake" */; + buildPhases = ( + C01A2257206901F20038347B /* Sources */, + C01A2258206901F20038347B /* Frameworks */, + C01A2259206901F20038347B /* Headers */, + C01A225A206901F20038347B /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = Cupcake; + productName = Cupcake; + productReference = C01A225C206901F20038347B /* Cupcake.framework */; + productType = "com.apple.product-type.framework"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + C01A2253206901F20038347B /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0920; + ORGANIZATIONNAME = Clapp; + TargetAttributes = { + C01A225B206901F20038347B = { + CreatedOnToolsVersion = 9.2; + LastSwiftMigration = 0920; + ProvisioningStyle = Automatic; + }; + }; + }; + buildConfigurationList = C01A2256206901F20038347B /* Build configuration list for PBXProject "Cupcake" */; + compatibilityVersion = "Xcode 8.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + ); + mainGroup = C01A2252206901F20038347B; + productRefGroup = C01A225D206901F20038347B /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + C01A225B206901F20038347B /* Cupcake */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + C01A225A206901F20038347B /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + C01A2257206901F20038347B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + C01A22A4206906E60038347B /* ImageView.swift in Sources */, + C01A22A3206906E60038347B /* Cons.swift in Sources */, + C01A22AB206906E60038347B /* View.swift in Sources */, + C01A22A0206906E60038347B /* CPKStackView.swift in Sources */, + C01A229E206906E60038347B /* Alert.swift in Sources */, + C01A22A8206906E60038347B /* Stack.swift in Sources */, + C01A22A9206906E60038347B /* TextField.swift in Sources */, + C01A22A1206906E60038347B /* Font.swift in Sources */, + C01A229F206906E60038347B /* __Private__Implementations__.swift in Sources */, + C01A22A5206906E60038347B /* Img.swift in Sources */, + C01A22AA206906E60038347B /* Color.swift in Sources */, + C01A22AD206906E60038347B /* TextView.swift in Sources */, + C01A229D206906E60038347B /* Styles.swift in Sources */, + C01A22AC206906E60038347B /* StaticTable.swift in Sources */, + C01A22A6206906E60038347B /* Label.swift in Sources */, + C01A22A2206906E60038347B /* Str.swift in Sources */, + C01A22A7206906E60038347B /* Button.swift in Sources */, + C01A22AE206906E60038347B /* AttStr.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + C01A2262206901F20038347B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_IDENTITY = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + 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_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 11.2; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + C01A2263206901F20038347B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_IDENTITY = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + 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_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 11.2; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + C01A2265206901F20038347B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_IDENTITY = ""; + CODE_SIGN_STYLE = Automatic; + DEFINES_MODULE = YES; + DEVELOPMENT_TEAM = WRF5N8F9Y9; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = Cupcake/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = eu.clapp.Cupcake; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 4.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + C01A2266206901F20038347B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_IDENTITY = ""; + CODE_SIGN_STYLE = Automatic; + DEFINES_MODULE = YES; + DEVELOPMENT_TEAM = WRF5N8F9Y9; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = Cupcake/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = eu.clapp.Cupcake; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_VERSION = 4.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + C01A2256206901F20038347B /* Build configuration list for PBXProject "Cupcake" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01A2262206901F20038347B /* Debug */, + C01A2263206901F20038347B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + C01A2264206901F20038347B /* Build configuration list for PBXNativeTarget "Cupcake" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01A2265206901F20038347B /* Debug */, + C01A2266206901F20038347B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = C01A2253206901F20038347B /* Project object */; +} diff --git a/Cupcake.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Cupcake.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..bfe21be --- /dev/null +++ b/Cupcake.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Cupcake/Cupcake.h b/Cupcake/Cupcake.h new file mode 100644 index 0000000..5962b92 --- /dev/null +++ b/Cupcake/Cupcake.h @@ -0,0 +1,19 @@ +// +// Cupcake.h +// Cupcake +// +// Created by Gyarmati Csaba on 2018. 03. 26.. +// Copyright © 2018. Clapp. All rights reserved. +// + +#import + +//! Project version number for Cupcake. +FOUNDATION_EXPORT double CupcakeVersionNumber; + +//! Project version string for Cupcake. +FOUNDATION_EXPORT const unsigned char CupcakeVersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import + + diff --git a/Cupcake/Info.plist b/Cupcake/Info.plist new file mode 100644 index 0000000..c6732b7 --- /dev/null +++ b/Cupcake/Info.plist @@ -0,0 +1,24 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.2.1 + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + +