Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion TwitterUI/TwitterUI.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
8DD2E0141B5C7F3600C27DE1 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 8DD2E0131B5C7F3600C27DE1 /* Images.xcassets */; };
8DD2E0171B5C7F3600C27DE1 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8DD2E0151B5C7F3600C27DE1 /* LaunchScreen.xib */; };
8DD2E0231B5C7F3600C27DE1 /* TwitterUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DD2E0221B5C7F3600C27DE1 /* TwitterUITests.m */; };
A48209AD1B5F2F64003DC97B /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A48209AC1B5F2F64003DC97B /* QuartzCore.framework */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
Expand All @@ -40,13 +41,15 @@
8DD2E01C1B5C7F3600C27DE1 /* TwitterUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TwitterUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
8DD2E0211B5C7F3600C27DE1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
8DD2E0221B5C7F3600C27DE1 /* TwitterUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TwitterUITests.m; sourceTree = "<group>"; };
A48209AC1B5F2F64003DC97B /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
8DD2E0001B5C7F3600C27DE1 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
A48209AD1B5F2F64003DC97B /* QuartzCore.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand All @@ -63,6 +66,7 @@
8DD2DFFA1B5C7F3600C27DE1 = {
isa = PBXGroup;
children = (
A48209AC1B5F2F64003DC97B /* QuartzCore.framework */,
8DD2E0051B5C7F3600C27DE1 /* TwitterUI */,
8DD2E01F1B5C7F3600C27DE1 /* TwitterUITests */,
8DD2E0041B5C7F3600C27DE1 /* Products */,
Expand Down Expand Up @@ -163,7 +167,7 @@
8DD2DFFB1B5C7F3600C27DE1 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0640;
LastUpgradeCheck = 0700;
ORGANIZATIONNAME = "Mike Kavouras";
TargetAttributes = {
8DD2E0021B5C7F3600C27DE1 = {
Expand Down Expand Up @@ -284,6 +288,7 @@
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
Expand Down Expand Up @@ -349,6 +354,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
INFOPLIST_FILE = TwitterUI/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "nyc.c4q.mikekavouras.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Debug;
Expand All @@ -359,6 +365,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
INFOPLIST_FILE = TwitterUI/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "nyc.c4q.mikekavouras.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Release;
Expand All @@ -377,6 +384,7 @@
);
INFOPLIST_FILE = TwitterUITests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "nyc.c4q.mikekavouras.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/TwitterUI.app/TwitterUI";
};
Expand All @@ -392,6 +400,7 @@
);
INFOPLIST_FILE = TwitterUITests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "nyc.c4q.mikekavouras.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/TwitterUI.app/TwitterUI";
};
Expand All @@ -416,6 +425,7 @@
8DD2E0281B5C7F3600C27DE1 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
8DD2E0291B5C7F3600C27DE1 /* Build configuration list for PBXNativeTarget "TwitterUITests" */ = {
isa = XCConfigurationList;
Expand All @@ -424,6 +434,7 @@
8DD2E02B1B5C7F3600C27DE1 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
Expand Down
Loading