Commit 7c334329 authored by Ian Ynda-Hummel's avatar Ian Ynda-Hummel

Add an integration test for basic Podfile construction.

parent 376f2412
......@@ -38,26 +38,28 @@ module Pod
def podfile_template(project)
platforms = project.targets.map { |t| t.platform_name }.uniq
if platforms.length == 1
has_global_platform = platforms.length == 1
if has_global_platform
podfile = <<-PLATFORM
platform #{platforms.first}
platform :#{platforms.first}
PLATFORM
else
podfile = <<-PLATFORM
# Uncomment this line to define the platform for your project
platform :ios, "6.0"
# Uncomment this line to define a global platform for your project
# platform :ios, "6.0"
PLATFORM
end
for target in project.targets
podfile << target_module(target)
podfile << target_module(target, !has_global_platform)
end
podfile
end
def target_module(target, define_platform = true)
platform = "platform #{target.platform_name}" if define_platform
platform = "platform :#{target.platform_name}" if define_platform
return <<-TARGET
target :#{target.name} do
target "#{target.name}" do
#{platform}
end
TARGET
......
......@@ -378,6 +378,20 @@ describe "Integration" do
#--------------------------------------#
describe "Pod init" do
describe "Initializes a Podfile with a single platform" do
check "init", "init_single_platform"
end
describe "Initializes a Podfile with no uniform platform" do
check "init", "init_multiple_platforms"
end
end
#--------------------------------------#
end
......
# Uncomment this line to define a global platform for your project
# platform :ios, "6.0"
target "SampleApp" do
platform :osx
end
target "SampleiOSApp" do
platform :ios
end
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
40025CA7176536DF007BBDD0 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40025CA6176536DF007BBDD0 /* UIKit.framework */; };
40025CA9176536DF007BBDD0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40025CA8176536DF007BBDD0 /* Foundation.framework */; };
40025CAB176536DF007BBDD0 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40025CAA176536DF007BBDD0 /* CoreGraphics.framework */; };
40025CAD176536DF007BBDD0 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40025CAC176536DF007BBDD0 /* QuartzCore.framework */; };
E575589F16C5943000DC1500 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E575589E16C5943000DC1500 /* Cocoa.framework */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
40025CA5176536DF007BBDD0 /* SampleiOSApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SampleiOSApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
40025CA6176536DF007BBDD0 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
40025CA8176536DF007BBDD0 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
40025CAA176536DF007BBDD0 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; };
40025CAC176536DF007BBDD0 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; };
E575589B16C5943000DC1500 /* SampleApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SampleApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
E575589E16C5943000DC1500 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
E57558A116C5943000DC1500 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
E57558A216C5943000DC1500 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
E57558A316C5943000DC1500 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
40025CA2176536DF007BBDD0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
40025CA7176536DF007BBDD0 /* UIKit.framework in Frameworks */,
40025CA9176536DF007BBDD0 /* Foundation.framework in Frameworks */,
40025CAB176536DF007BBDD0 /* CoreGraphics.framework in Frameworks */,
40025CAD176536DF007BBDD0 /* QuartzCore.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
E575589816C5943000DC1500 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
E575589F16C5943000DC1500 /* Cocoa.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
40025CAE176536DF007BBDD0 /* SampleiOSApp */ = {
isa = PBXGroup;
children = (
);
path = SampleiOSApp;
sourceTree = "<group>";
};
E575589216C5943000DC1500 = {
isa = PBXGroup;
children = (
E57558A416C5943000DC1500 /* SampleApp */,
40025CAE176536DF007BBDD0 /* SampleiOSApp */,
E575589D16C5943000DC1500 /* Frameworks */,
E575589C16C5943000DC1500 /* Products */,
);
sourceTree = "<group>";
};
E575589C16C5943000DC1500 /* Products */ = {
isa = PBXGroup;
children = (
E575589B16C5943000DC1500 /* SampleApp.app */,
40025CA5176536DF007BBDD0 /* SampleiOSApp.app */,
);
name = Products;
sourceTree = "<group>";
};
E575589D16C5943000DC1500 /* Frameworks */ = {
isa = PBXGroup;
children = (
E575589E16C5943000DC1500 /* Cocoa.framework */,
40025CA6176536DF007BBDD0 /* UIKit.framework */,
40025CA8176536DF007BBDD0 /* Foundation.framework */,
40025CAA176536DF007BBDD0 /* CoreGraphics.framework */,
40025CAC176536DF007BBDD0 /* QuartzCore.framework */,
E57558A016C5943000DC1500 /* Other Frameworks */,
);
name = Frameworks;
sourceTree = "<group>";
};
E57558A016C5943000DC1500 /* Other Frameworks */ = {
isa = PBXGroup;
children = (
E57558A116C5943000DC1500 /* AppKit.framework */,
E57558A216C5943000DC1500 /* CoreData.framework */,
E57558A316C5943000DC1500 /* Foundation.framework */,
);
name = "Other Frameworks";
sourceTree = "<group>";
};
E57558A416C5943000DC1500 /* SampleApp */ = {
isa = PBXGroup;
children = (
);
path = SampleApp;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
40025CA4176536DF007BBDD0 /* SampleiOSApp */ = {
isa = PBXNativeTarget;
buildConfigurationList = 40025CBB176536DF007BBDD0 /* Build configuration list for PBXNativeTarget "SampleiOSApp" */;
buildPhases = (
40025CA1176536DF007BBDD0 /* Sources */,
40025CA2176536DF007BBDD0 /* Frameworks */,
40025CA3176536DF007BBDD0 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = SampleiOSApp;
productName = SampleiOSApp;
productReference = 40025CA5176536DF007BBDD0 /* SampleiOSApp.app */;
productType = "com.apple.product-type.application";
};
E575589A16C5943000DC1500 /* SampleApp */ = {
isa = PBXNativeTarget;
buildConfigurationList = E57558B816C5943100DC1500 /* Build configuration list for PBXNativeTarget "SampleApp" */;
buildPhases = (
E575589716C5943000DC1500 /* Sources */,
E575589816C5943000DC1500 /* Frameworks */,
E575589916C5943000DC1500 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = SampleApp;
productName = SampleApp;
productReference = E575589B16C5943000DC1500 /* SampleApp.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
E575589316C5943000DC1500 /* Project object */ = {
isa = PBXProject;
attributes = {
CLASSPREFIX = CP;
LastUpgradeCheck = 0460;
ORGANIZATIONNAME = CocoaPods;
};
buildConfigurationList = E575589616C5943000DC1500 /* Build configuration list for PBXProject "SampleApp" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = E575589216C5943000DC1500;
productRefGroup = E575589C16C5943000DC1500 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
E575589A16C5943000DC1500 /* SampleApp */,
40025CA4176536DF007BBDD0 /* SampleiOSApp */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
40025CA3176536DF007BBDD0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
E575589916C5943000DC1500 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
40025CA1176536DF007BBDD0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
E575589716C5943000DC1500 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin XCBuildConfiguration section */
40025CBC176536DF007BBDD0 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"\"$(SYSTEM_APPS_DIR)/Xcode.app/Contents/Developer/Library/Frameworks\"",
);
GCC_DYNAMIC_NO_PIC = NO;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = SampleiOSApp/Prefix.pch;
GCC_PREPROCESSOR_DEFINITIONS = DEBUG;
GCC_VERSION = com.apple.compilers.llvmgcc42;
INFOPLIST_FILE = SampleiOSApp/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
OTHER_LDFLAGS = (
"-ObjC",
"-all_load",
);
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = 1;
USER_HEADER_SEARCH_PATHS = "$(BUILT_PRODUCTS_DIR)/usr/local/include";
WRAPPER_EXTENSION = app;
};
name = Debug;
};
40025CBD176536DF007BBDD0 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"\"$(SYSTEM_APPS_DIR)/Xcode.app/Contents/Developer/Library/Frameworks\"",
);
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = SampleiOSApp/Prefix.pch;
GCC_VERSION = com.apple.compilers.llvmgcc42;
INFOPLIST_FILE = SampleiOSApp/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
OTHER_LDFLAGS = (
"-ObjC",
"-all_load",
);
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = 1;
USER_HEADER_SEARCH_PATHS = "$(BUILT_PRODUCTS_DIR)/usr/local/include";
VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = app;
};
name = Release;
};
E57558B616C5943100DC1500 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
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;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.8;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = macosx;
};
name = Debug;
};
E57558B716C5943100DC1500 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.8;
SDKROOT = macosx;
};
name = Release;
};
E57558B916C5943100DC1500 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "SampleApp/SampleApp-Prefix.pch";
INFOPLIST_FILE = "SampleApp/SampleApp-Info.plist";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
};
name = Debug;
};
E57558BA16C5943100DC1500 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "SampleApp/SampleApp-Prefix.pch";
INFOPLIST_FILE = "SampleApp/SampleApp-Info.plist";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
40025CBB176536DF007BBDD0 /* Build configuration list for PBXNativeTarget "SampleiOSApp" */ = {
isa = XCConfigurationList;
buildConfigurations = (
40025CBC176536DF007BBDD0 /* Debug */,
40025CBD176536DF007BBDD0 /* Release */,
);
defaultConfigurationIsVisible = 0;
};
E575589616C5943000DC1500 /* Build configuration list for PBXProject "SampleApp" */ = {
isa = XCConfigurationList;
buildConfigurations = (
E57558B616C5943100DC1500 /* Debug */,
E57558B716C5943100DC1500 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
E57558B816C5943100DC1500 /* Build configuration list for PBXNativeTarget "SampleApp" */ = {
isa = XCConfigurationList;
buildConfigurations = (
E57558B916C5943100DC1500 /* Debug */,
E57558BA16C5943100DC1500 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = E575589316C5943000DC1500 /* Project object */;
}
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
40025CA7176536DF007BBDD0 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40025CA6176536DF007BBDD0 /* UIKit.framework */; };
40025CA9176536DF007BBDD0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40025CA8176536DF007BBDD0 /* Foundation.framework */; };
40025CAB176536DF007BBDD0 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40025CAA176536DF007BBDD0 /* CoreGraphics.framework */; };
40025CAD176536DF007BBDD0 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40025CAC176536DF007BBDD0 /* QuartzCore.framework */; };
E575589F16C5943000DC1500 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E575589E16C5943000DC1500 /* Cocoa.framework */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
40025CA5176536DF007BBDD0 /* SampleiOSApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SampleiOSApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
40025CA6176536DF007BBDD0 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
40025CA8176536DF007BBDD0 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
40025CAA176536DF007BBDD0 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; };
40025CAC176536DF007BBDD0 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; };
E575589B16C5943000DC1500 /* SampleApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SampleApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
E575589E16C5943000DC1500 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
E57558A116C5943000DC1500 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
E57558A216C5943000DC1500 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
E57558A316C5943000DC1500 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
40025CA2176536DF007BBDD0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
40025CA7176536DF007BBDD0 /* UIKit.framework in Frameworks */,
40025CA9176536DF007BBDD0 /* Foundation.framework in Frameworks */,
40025CAB176536DF007BBDD0 /* CoreGraphics.framework in Frameworks */,
40025CAD176536DF007BBDD0 /* QuartzCore.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
E575589816C5943000DC1500 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
E575589F16C5943000DC1500 /* Cocoa.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
40025CAE176536DF007BBDD0 /* SampleiOSApp */ = {
isa = PBXGroup;
children = (
);
path = SampleiOSApp;
sourceTree = "<group>";
};
E575589216C5943000DC1500 = {
isa = PBXGroup;
children = (
E57558A416C5943000DC1500 /* SampleApp */,
40025CAE176536DF007BBDD0 /* SampleiOSApp */,
E575589D16C5943000DC1500 /* Frameworks */,
E575589C16C5943000DC1500 /* Products */,
);
sourceTree = "<group>";
};
E575589C16C5943000DC1500 /* Products */ = {
isa = PBXGroup;
children = (
E575589B16C5943000DC1500 /* SampleApp.app */,
40025CA5176536DF007BBDD0 /* SampleiOSApp.app */,
);
name = Products;
sourceTree = "<group>";
};
E575589D16C5943000DC1500 /* Frameworks */ = {
isa = PBXGroup;
children = (
E575589E16C5943000DC1500 /* Cocoa.framework */,
40025CA6176536DF007BBDD0 /* UIKit.framework */,
40025CA8176536DF007BBDD0 /* Foundation.framework */,
40025CAA176536DF007BBDD0 /* CoreGraphics.framework */,
40025CAC176536DF007BBDD0 /* QuartzCore.framework */,
E57558A016C5943000DC1500 /* Other Frameworks */,
);
name = Frameworks;
sourceTree = "<group>";
};
E57558A016C5943000DC1500 /* Other Frameworks */ = {
isa = PBXGroup;
children = (
E57558A116C5943000DC1500 /* AppKit.framework */,
E57558A216C5943000DC1500 /* CoreData.framework */,
E57558A316C5943000DC1500 /* Foundation.framework */,
);
name = "Other Frameworks";
sourceTree = "<group>";
};
E57558A416C5943000DC1500 /* SampleApp */ = {
isa = PBXGroup;
children = (
);
path = SampleApp;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
40025CA4176536DF007BBDD0 /* SampleiOSApp */ = {
isa = PBXNativeTarget;
buildConfigurationList = 40025CBB176536DF007BBDD0 /* Build configuration list for PBXNativeTarget "SampleiOSApp" */;
buildPhases = (
40025CA1176536DF007BBDD0 /* Sources */,
40025CA2176536DF007BBDD0 /* Frameworks */,
40025CA3176536DF007BBDD0 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = SampleiOSApp;
productName = SampleiOSApp;
productReference = 40025CA5176536DF007BBDD0 /* SampleiOSApp.app */;
productType = "com.apple.product-type.application";
};
E575589A16C5943000DC1500 /* SampleApp */ = {
isa = PBXNativeTarget;
buildConfigurationList = E57558B816C5943100DC1500 /* Build configuration list for PBXNativeTarget "SampleApp" */;
buildPhases = (
E575589716C5943000DC1500 /* Sources */,
E575589816C5943000DC1500 /* Frameworks */,
E575589916C5943000DC1500 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = SampleApp;
productName = SampleApp;
productReference = E575589B16C5943000DC1500 /* SampleApp.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
E575589316C5943000DC1500 /* Project object */ = {
isa = PBXProject;
attributes = {
CLASSPREFIX = CP;
LastUpgradeCheck = 0460;
ORGANIZATIONNAME = CocoaPods;
};
buildConfigurationList = E575589616C5943000DC1500 /* Build configuration list for PBXProject "SampleApp" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = E575589216C5943000DC1500;
productRefGroup = E575589C16C5943000DC1500 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
E575589A16C5943000DC1500 /* SampleApp */,
40025CA4176536DF007BBDD0 /* SampleiOSApp */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
40025CA3176536DF007BBDD0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
E575589916C5943000DC1500 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
40025CA1176536DF007BBDD0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
E575589716C5943000DC1500 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin XCBuildConfiguration section */
40025CBC176536DF007BBDD0 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"\"$(SYSTEM_APPS_DIR)/Xcode.app/Contents/Developer/Library/Frameworks\"",
);
GCC_DYNAMIC_NO_PIC = NO;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = SampleiOSApp/Prefix.pch;
GCC_PREPROCESSOR_DEFINITIONS = DEBUG;
GCC_VERSION = com.apple.compilers.llvmgcc42;
INFOPLIST_FILE = SampleiOSApp/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
OTHER_LDFLAGS = (
"-ObjC",
"-all_load",
);
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = 1;
USER_HEADER_SEARCH_PATHS = "$(BUILT_PRODUCTS_DIR)/usr/local/include";
WRAPPER_EXTENSION = app;
};
name = Debug;
};
40025CBD176536DF007BBDD0 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"\"$(SYSTEM_APPS_DIR)/Xcode.app/Contents/Developer/Library/Frameworks\"",
);
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = SampleiOSApp/Prefix.pch;
GCC_VERSION = com.apple.compilers.llvmgcc42;
INFOPLIST_FILE = SampleiOSApp/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
OTHER_LDFLAGS = (
"-ObjC",
"-all_load",
);
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = 1;
USER_HEADER_SEARCH_PATHS = "$(BUILT_PRODUCTS_DIR)/usr/local/include";
VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = app;
};
name = Release;
};
E57558B616C5943100DC1500 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
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;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.8;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = macosx;
};
name = Debug;
};
E57558B716C5943100DC1500 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.8;
SDKROOT = macosx;
};
name = Release;
};
E57558B916C5943100DC1500 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "SampleApp/SampleApp-Prefix.pch";
INFOPLIST_FILE = "SampleApp/SampleApp-Info.plist";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
};
name = Debug;
};
E57558BA16C5943100DC1500 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "SampleApp/SampleApp-Prefix.pch";
INFOPLIST_FILE = "SampleApp/SampleApp-Info.plist";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
40025CBB176536DF007BBDD0 /* Build configuration list for PBXNativeTarget "SampleiOSApp" */ = {
isa = XCConfigurationList;
buildConfigurations = (
40025CBC176536DF007BBDD0 /* Debug */,
40025CBD176536DF007BBDD0 /* Release */,
);
defaultConfigurationIsVisible = 0;
};
E575589616C5943000DC1500 /* Build configuration list for PBXProject "SampleApp" */ = {
isa = XCConfigurationList;
buildConfigurations = (
E57558B616C5943100DC1500 /* Debug */,
E57558B716C5943100DC1500 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
E57558B816C5943100DC1500 /* Build configuration list for PBXNativeTarget "SampleApp" */ = {
isa = XCConfigurationList;
buildConfigurations = (
E57558B916C5943100DC1500 /* Debug */,
E57558BA16C5943100DC1500 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = E575589316C5943000DC1500 /* Project object */;
}
platform :osx
target "SampleApp" do
end
target "SampleApp copy" do
end
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
40961950176534BF008C2AFB /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = E57558AA16C5943000DC1500 /* main.m */; };
40961951176534BF008C2AFB /* CPAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = E57558B116C5943000DC1500 /* CPAppDelegate.m */; };
40961953176534BF008C2AFB /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E575589E16C5943000DC1500 /* Cocoa.framework */; };
40961955176534BF008C2AFB /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = E57558A716C5943000DC1500 /* InfoPlist.strings */; };
40961956176534BF008C2AFB /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = E57558AD16C5943000DC1500 /* Credits.rtf */; };
40961957176534BF008C2AFB /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = E57558B316C5943100DC1500 /* MainMenu.xib */; };
E575589F16C5943000DC1500 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E575589E16C5943000DC1500 /* Cocoa.framework */; };
E57558A916C5943000DC1500 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = E57558A716C5943000DC1500 /* InfoPlist.strings */; };
E57558AB16C5943000DC1500 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = E57558AA16C5943000DC1500 /* main.m */; };
E57558AF16C5943000DC1500 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = E57558AD16C5943000DC1500 /* Credits.rtf */; };
E57558B216C5943000DC1500 /* CPAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = E57558B116C5943000DC1500 /* CPAppDelegate.m */; };
E57558B516C5943100DC1500 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = E57558B316C5943100DC1500 /* MainMenu.xib */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
4096195B176534BF008C2AFB /* SampleApp copy.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "SampleApp copy.app"; sourceTree = BUILT_PRODUCTS_DIR; };
E575589B16C5943000DC1500 /* SampleApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SampleApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
E575589E16C5943000DC1500 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
E57558A116C5943000DC1500 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
E57558A216C5943000DC1500 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
E57558A316C5943000DC1500 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
E57558A616C5943000DC1500 /* SampleApp-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "SampleApp-Info.plist"; sourceTree = "<group>"; };
E57558A816C5943000DC1500 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
E57558AA16C5943000DC1500 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
E57558AC16C5943000DC1500 /* SampleApp-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "SampleApp-Prefix.pch"; sourceTree = "<group>"; };
E57558AE16C5943000DC1500 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = en; path = en.lproj/Credits.rtf; sourceTree = "<group>"; };
E57558B016C5943000DC1500 /* CPAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CPAppDelegate.h; sourceTree = "<group>"; };
E57558B116C5943000DC1500 /* CPAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CPAppDelegate.m; sourceTree = "<group>"; };
E57558B416C5943100DC1500 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/MainMenu.xib; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
40961952176534BF008C2AFB /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
40961953176534BF008C2AFB /* Cocoa.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
E575589816C5943000DC1500 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
E575589F16C5943000DC1500 /* Cocoa.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
E575589216C5943000DC1500 = {
isa = PBXGroup;
children = (
E57558A416C5943000DC1500 /* SampleApp */,
E575589D16C5943000DC1500 /* Frameworks */,
E575589C16C5943000DC1500 /* Products */,
);
sourceTree = "<group>";
};
E575589C16C5943000DC1500 /* Products */ = {
isa = PBXGroup;
children = (
E575589B16C5943000DC1500 /* SampleApp.app */,
4096195B176534BF008C2AFB /* SampleApp copy.app */,
);
name = Products;
sourceTree = "<group>";
};
E575589D16C5943000DC1500 /* Frameworks */ = {
isa = PBXGroup;
children = (
E575589E16C5943000DC1500 /* Cocoa.framework */,
E57558A016C5943000DC1500 /* Other Frameworks */,
);
name = Frameworks;
sourceTree = "<group>";
};
E57558A016C5943000DC1500 /* Other Frameworks */ = {
isa = PBXGroup;
children = (
E57558A116C5943000DC1500 /* AppKit.framework */,
E57558A216C5943000DC1500 /* CoreData.framework */,
E57558A316C5943000DC1500 /* Foundation.framework */,
);
name = "Other Frameworks";
sourceTree = "<group>";
};
E57558A416C5943000DC1500 /* SampleApp */ = {
isa = PBXGroup;
children = (
E57558B016C5943000DC1500 /* CPAppDelegate.h */,
E57558B116C5943000DC1500 /* CPAppDelegate.m */,
E57558B316C5943100DC1500 /* MainMenu.xib */,
E57558A516C5943000DC1500 /* Supporting Files */,
);
path = SampleApp;
sourceTree = "<group>";
};
E57558A516C5943000DC1500 /* Supporting Files */ = {
isa = PBXGroup;
children = (
E57558A616C5943000DC1500 /* SampleApp-Info.plist */,
E57558A716C5943000DC1500 /* InfoPlist.strings */,
E57558AA16C5943000DC1500 /* main.m */,
E57558AC16C5943000DC1500 /* SampleApp-Prefix.pch */,
E57558AD16C5943000DC1500 /* Credits.rtf */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
4096194E176534BF008C2AFB /* SampleApp copy */ = {
isa = PBXNativeTarget;
buildConfigurationList = 40961958176534BF008C2AFB /* Build configuration list for PBXNativeTarget "SampleApp copy" */;
buildPhases = (
4096194F176534BF008C2AFB /* Sources */,
40961952176534BF008C2AFB /* Frameworks */,
40961954176534BF008C2AFB /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = "SampleApp copy";
productName = SampleApp;
productReference = 4096195B176534BF008C2AFB /* SampleApp copy.app */;
productType = "com.apple.product-type.application";
};
E575589A16C5943000DC1500 /* SampleApp */ = {
isa = PBXNativeTarget;
buildConfigurationList = E57558B816C5943100DC1500 /* Build configuration list for PBXNativeTarget "SampleApp" */;
buildPhases = (
E575589716C5943000DC1500 /* Sources */,
E575589816C5943000DC1500 /* Frameworks */,
E575589916C5943000DC1500 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = SampleApp;
productName = SampleApp;
productReference = E575589B16C5943000DC1500 /* SampleApp.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
E575589316C5943000DC1500 /* Project object */ = {
isa = PBXProject;
attributes = {
CLASSPREFIX = CP;
LastUpgradeCheck = 0460;
ORGANIZATIONNAME = CocoaPods;
};
buildConfigurationList = E575589616C5943000DC1500 /* Build configuration list for PBXProject "SampleApp" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = E575589216C5943000DC1500;
productRefGroup = E575589C16C5943000DC1500 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
E575589A16C5943000DC1500 /* SampleApp */,
4096194E176534BF008C2AFB /* SampleApp copy */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
40961954176534BF008C2AFB /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
40961955176534BF008C2AFB /* InfoPlist.strings in Resources */,
40961956176534BF008C2AFB /* Credits.rtf in Resources */,
40961957176534BF008C2AFB /* MainMenu.xib in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
E575589916C5943000DC1500 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
E57558A916C5943000DC1500 /* InfoPlist.strings in Resources */,
E57558AF16C5943000DC1500 /* Credits.rtf in Resources */,
E57558B516C5943100DC1500 /* MainMenu.xib in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
4096194F176534BF008C2AFB /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
40961950176534BF008C2AFB /* main.m in Sources */,
40961951176534BF008C2AFB /* CPAppDelegate.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
E575589716C5943000DC1500 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
E57558AB16C5943000DC1500 /* main.m in Sources */,
E57558B216C5943000DC1500 /* CPAppDelegate.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXVariantGroup section */
E57558A716C5943000DC1500 /* InfoPlist.strings */ = {
isa = PBXVariantGroup;
children = (
E57558A816C5943000DC1500 /* en */,
);
name = InfoPlist.strings;
sourceTree = "<group>";
};
E57558AD16C5943000DC1500 /* Credits.rtf */ = {
isa = PBXVariantGroup;
children = (
E57558AE16C5943000DC1500 /* en */,
);
name = Credits.rtf;
sourceTree = "<group>";
};
E57558B316C5943100DC1500 /* MainMenu.xib */ = {
isa = PBXVariantGroup;
children = (
E57558B416C5943100DC1500 /* en */,
);
name = MainMenu.xib;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
40961959176534BF008C2AFB /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "SampleApp/SampleApp-Prefix.pch";
INFOPLIST_FILE = "SampleApp copy-Info.plist";
PRODUCT_NAME = "SampleApp copy";
WRAPPER_EXTENSION = app;
};
name = Debug;
};
4096195A176534BF008C2AFB /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "SampleApp/SampleApp-Prefix.pch";
INFOPLIST_FILE = "SampleApp copy-Info.plist";
PRODUCT_NAME = "SampleApp copy";
WRAPPER_EXTENSION = app;
};
name = Release;
};
E57558B616C5943100DC1500 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
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;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.8;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = macosx;
};
name = Debug;
};
E57558B716C5943100DC1500 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.8;
SDKROOT = macosx;
};
name = Release;
};
E57558B916C5943100DC1500 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "SampleApp/SampleApp-Prefix.pch";
INFOPLIST_FILE = "SampleApp/SampleApp-Info.plist";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
};
name = Debug;
};
E57558BA16C5943100DC1500 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "SampleApp/SampleApp-Prefix.pch";
INFOPLIST_FILE = "SampleApp/SampleApp-Info.plist";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
40961958176534BF008C2AFB /* Build configuration list for PBXNativeTarget "SampleApp copy" */ = {
isa = XCConfigurationList;
buildConfigurations = (
40961959176534BF008C2AFB /* Debug */,
4096195A176534BF008C2AFB /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
E575589616C5943000DC1500 /* Build configuration list for PBXProject "SampleApp" */ = {
isa = XCConfigurationList;
buildConfigurations = (
E57558B616C5943100DC1500 /* Debug */,
E57558B716C5943100DC1500 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
E57558B816C5943100DC1500 /* Build configuration list for PBXNativeTarget "SampleApp" */ = {
isa = XCConfigurationList;
buildConfigurations = (
E57558B916C5943100DC1500 /* Debug */,
E57558BA16C5943100DC1500 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = E575589316C5943000DC1500 /* Project object */;
}
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
40961950176534BF008C2AFB /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = E57558AA16C5943000DC1500 /* main.m */; };
40961951176534BF008C2AFB /* CPAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = E57558B116C5943000DC1500 /* CPAppDelegate.m */; };
40961953176534BF008C2AFB /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E575589E16C5943000DC1500 /* Cocoa.framework */; };
40961955176534BF008C2AFB /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = E57558A716C5943000DC1500 /* InfoPlist.strings */; };
40961956176534BF008C2AFB /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = E57558AD16C5943000DC1500 /* Credits.rtf */; };
40961957176534BF008C2AFB /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = E57558B316C5943100DC1500 /* MainMenu.xib */; };
E575589F16C5943000DC1500 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E575589E16C5943000DC1500 /* Cocoa.framework */; };
E57558A916C5943000DC1500 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = E57558A716C5943000DC1500 /* InfoPlist.strings */; };
E57558AB16C5943000DC1500 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = E57558AA16C5943000DC1500 /* main.m */; };
E57558AF16C5943000DC1500 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = E57558AD16C5943000DC1500 /* Credits.rtf */; };
E57558B216C5943000DC1500 /* CPAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = E57558B116C5943000DC1500 /* CPAppDelegate.m */; };
E57558B516C5943100DC1500 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = E57558B316C5943100DC1500 /* MainMenu.xib */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
4096195B176534BF008C2AFB /* SampleApp copy.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "SampleApp copy.app"; sourceTree = BUILT_PRODUCTS_DIR; };
E575589B16C5943000DC1500 /* SampleApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SampleApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
E575589E16C5943000DC1500 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
E57558A116C5943000DC1500 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
E57558A216C5943000DC1500 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
E57558A316C5943000DC1500 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
E57558A616C5943000DC1500 /* SampleApp-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "SampleApp-Info.plist"; sourceTree = "<group>"; };
E57558A816C5943000DC1500 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
E57558AA16C5943000DC1500 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
E57558AC16C5943000DC1500 /* SampleApp-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "SampleApp-Prefix.pch"; sourceTree = "<group>"; };
E57558AE16C5943000DC1500 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = en; path = en.lproj/Credits.rtf; sourceTree = "<group>"; };
E57558B016C5943000DC1500 /* CPAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CPAppDelegate.h; sourceTree = "<group>"; };
E57558B116C5943000DC1500 /* CPAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CPAppDelegate.m; sourceTree = "<group>"; };
E57558B416C5943100DC1500 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/MainMenu.xib; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
40961952176534BF008C2AFB /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
40961953176534BF008C2AFB /* Cocoa.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
E575589816C5943000DC1500 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
E575589F16C5943000DC1500 /* Cocoa.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
E575589216C5943000DC1500 = {
isa = PBXGroup;
children = (
E57558A416C5943000DC1500 /* SampleApp */,
E575589D16C5943000DC1500 /* Frameworks */,
E575589C16C5943000DC1500 /* Products */,
);
sourceTree = "<group>";
};
E575589C16C5943000DC1500 /* Products */ = {
isa = PBXGroup;
children = (
E575589B16C5943000DC1500 /* SampleApp.app */,
4096195B176534BF008C2AFB /* SampleApp copy.app */,
);
name = Products;
sourceTree = "<group>";
};
E575589D16C5943000DC1500 /* Frameworks */ = {
isa = PBXGroup;
children = (
E575589E16C5943000DC1500 /* Cocoa.framework */,
E57558A016C5943000DC1500 /* Other Frameworks */,
);
name = Frameworks;
sourceTree = "<group>";
};
E57558A016C5943000DC1500 /* Other Frameworks */ = {
isa = PBXGroup;
children = (
E57558A116C5943000DC1500 /* AppKit.framework */,
E57558A216C5943000DC1500 /* CoreData.framework */,
E57558A316C5943000DC1500 /* Foundation.framework */,
);
name = "Other Frameworks";
sourceTree = "<group>";
};
E57558A416C5943000DC1500 /* SampleApp */ = {
isa = PBXGroup;
children = (
E57558B016C5943000DC1500 /* CPAppDelegate.h */,
E57558B116C5943000DC1500 /* CPAppDelegate.m */,
E57558B316C5943100DC1500 /* MainMenu.xib */,
E57558A516C5943000DC1500 /* Supporting Files */,
);
path = SampleApp;
sourceTree = "<group>";
};
E57558A516C5943000DC1500 /* Supporting Files */ = {
isa = PBXGroup;
children = (
E57558A616C5943000DC1500 /* SampleApp-Info.plist */,
E57558A716C5943000DC1500 /* InfoPlist.strings */,
E57558AA16C5943000DC1500 /* main.m */,
E57558AC16C5943000DC1500 /* SampleApp-Prefix.pch */,
E57558AD16C5943000DC1500 /* Credits.rtf */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
4096194E176534BF008C2AFB /* SampleApp copy */ = {
isa = PBXNativeTarget;
buildConfigurationList = 40961958176534BF008C2AFB /* Build configuration list for PBXNativeTarget "SampleApp copy" */;
buildPhases = (
4096194F176534BF008C2AFB /* Sources */,
40961952176534BF008C2AFB /* Frameworks */,
40961954176534BF008C2AFB /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = "SampleApp copy";
productName = SampleApp;
productReference = 4096195B176534BF008C2AFB /* SampleApp copy.app */;
productType = "com.apple.product-type.application";
};
E575589A16C5943000DC1500 /* SampleApp */ = {
isa = PBXNativeTarget;
buildConfigurationList = E57558B816C5943100DC1500 /* Build configuration list for PBXNativeTarget "SampleApp" */;
buildPhases = (
E575589716C5943000DC1500 /* Sources */,
E575589816C5943000DC1500 /* Frameworks */,
E575589916C5943000DC1500 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = SampleApp;
productName = SampleApp;
productReference = E575589B16C5943000DC1500 /* SampleApp.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
E575589316C5943000DC1500 /* Project object */ = {
isa = PBXProject;
attributes = {
CLASSPREFIX = CP;
LastUpgradeCheck = 0460;
ORGANIZATIONNAME = CocoaPods;
};
buildConfigurationList = E575589616C5943000DC1500 /* Build configuration list for PBXProject "SampleApp" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = E575589216C5943000DC1500;
productRefGroup = E575589C16C5943000DC1500 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
E575589A16C5943000DC1500 /* SampleApp */,
4096194E176534BF008C2AFB /* SampleApp copy */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
40961954176534BF008C2AFB /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
40961955176534BF008C2AFB /* InfoPlist.strings in Resources */,
40961956176534BF008C2AFB /* Credits.rtf in Resources */,
40961957176534BF008C2AFB /* MainMenu.xib in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
E575589916C5943000DC1500 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
E57558A916C5943000DC1500 /* InfoPlist.strings in Resources */,
E57558AF16C5943000DC1500 /* Credits.rtf in Resources */,
E57558B516C5943100DC1500 /* MainMenu.xib in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
4096194F176534BF008C2AFB /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
40961950176534BF008C2AFB /* main.m in Sources */,
40961951176534BF008C2AFB /* CPAppDelegate.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
E575589716C5943000DC1500 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
E57558AB16C5943000DC1500 /* main.m in Sources */,
E57558B216C5943000DC1500 /* CPAppDelegate.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXVariantGroup section */
E57558A716C5943000DC1500 /* InfoPlist.strings */ = {
isa = PBXVariantGroup;
children = (
E57558A816C5943000DC1500 /* en */,
);
name = InfoPlist.strings;
sourceTree = "<group>";
};
E57558AD16C5943000DC1500 /* Credits.rtf */ = {
isa = PBXVariantGroup;
children = (
E57558AE16C5943000DC1500 /* en */,
);
name = Credits.rtf;
sourceTree = "<group>";
};
E57558B316C5943100DC1500 /* MainMenu.xib */ = {
isa = PBXVariantGroup;
children = (
E57558B416C5943100DC1500 /* en */,
);
name = MainMenu.xib;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
40961959176534BF008C2AFB /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "SampleApp/SampleApp-Prefix.pch";
INFOPLIST_FILE = "SampleApp copy-Info.plist";
PRODUCT_NAME = "SampleApp copy";
WRAPPER_EXTENSION = app;
};
name = Debug;
};
4096195A176534BF008C2AFB /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "SampleApp/SampleApp-Prefix.pch";
INFOPLIST_FILE = "SampleApp copy-Info.plist";
PRODUCT_NAME = "SampleApp copy";
WRAPPER_EXTENSION = app;
};
name = Release;
};
E57558B616C5943100DC1500 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
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;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.8;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = macosx;
};
name = Debug;
};
E57558B716C5943100DC1500 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.8;
SDKROOT = macosx;
};
name = Release;
};
E57558B916C5943100DC1500 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "SampleApp/SampleApp-Prefix.pch";
INFOPLIST_FILE = "SampleApp/SampleApp-Info.plist";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
};
name = Debug;
};
E57558BA16C5943100DC1500 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "SampleApp/SampleApp-Prefix.pch";
INFOPLIST_FILE = "SampleApp/SampleApp-Info.plist";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
40961958176534BF008C2AFB /* Build configuration list for PBXNativeTarget "SampleApp copy" */ = {
isa = XCConfigurationList;
buildConfigurations = (
40961959176534BF008C2AFB /* Debug */,
4096195A176534BF008C2AFB /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
E575589616C5943000DC1500 /* Build configuration list for PBXProject "SampleApp" */ = {
isa = XCConfigurationList;
buildConfigurations = (
E57558B616C5943100DC1500 /* Debug */,
E57558B716C5943100DC1500 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
E57558B816C5943100DC1500 /* Build configuration list for PBXNativeTarget "SampleApp" */ = {
isa = XCConfigurationList;
buildConfigurations = (
E57558B916C5943100DC1500 /* Debug */,
E57558BA16C5943100DC1500 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = E575589316C5943000DC1500 /* Project object */;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment