Fixes #135 - convert Makefile to Xcode project

This commit is contained in:
Shazron Abdullah
2015-07-16 17:26:48 -07:00
parent 7d997b89c7
commit bc1bb0d320
9 changed files with 421 additions and 81 deletions

17
ios-deploy-demo/main.m Normal file
View File

@@ -0,0 +1,17 @@
//
// main.m
// ios-deploy-demo
//
// Created by shazron on 7/16/15.
// Copyright (c) 2015 PhoneGap. All rights reserved.
//
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[]) {
@autoreleasepool {
// insert code here...
NSLog(@"Hello, World!");
}
return 0;
}