summaryrefslogtreecommitdiff
path: root/tests/projects/objc/iosapp_framework_rpath/src/app/main.m
blob: 44183e7aa09583f6b6dbdb23ec97888ddaa32f9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import <UIKit/UIKit.h>
#import <test/test.h>

@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end

@implementation AppDelegate
@end

int main(int argc, char *argv[]) {
    return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])) + test_value();
}