Skip to content

Commit

Permalink
add TestXEP82 for iOS to test workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
adamvduke committed Jan 19, 2012
1 parent 7d6c154 commit 05882f5
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
Expand Up @@ -260,10 +260,12 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ENABLE_OBJC_ARC = YES;
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "TestXEP82/TestXEP82-Prefix.pch";
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
INFOPLIST_FILE = "TestXEP82/TestXEP82-Info.plist";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
Expand All @@ -274,9 +276,11 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ENABLE_OBJC_ARC = YES;
COPY_PHASE_STRIP = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "TestXEP82/TestXEP82-Prefix.pch";
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
INFOPLIST_FILE = "TestXEP82/TestXEP82-Info.plist";
PRODUCT_NAME = "$(TARGET_NAME)";
VALIDATE_PRODUCT = YES;
Expand Down
7 changes: 0 additions & 7 deletions Xcode/Testing/TestXEP82/iOS/TestXEP82/TestXEP82AppDelegate.m
Expand Up @@ -17,11 +17,4 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
return YES;
}

- (void)dealloc
{
[_window release];
[_viewController release];
[super dealloc];
}

@end
8 changes: 4 additions & 4 deletions Xcode/Testing/TestXEP82/iOS/TestXEP82/main.m
Expand Up @@ -7,11 +7,11 @@
//

#import <UIKit/UIKit.h>
#import "TestXEP82AppDelegate.h"

int main(int argc, char *argv[])
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([TestXEP82AppDelegate class]));
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 05882f5

Please sign in to comment.