initial support for carthage

This commit is contained in:
David Hart
2016-12-26 17:16:57 +01:00
parent cd78291de5
commit f2d4d96d35
21 changed files with 760 additions and 434 deletions

View File

@@ -0,0 +1,16 @@
//
// main.m
// YogaKitSample
//
// Created by David Hart on 26.12.16.
// Copyright © 2016 Facebook. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}