b01e6947c8
This will work for generating an Xcode project from cmake. Still in progress, but initial working version.
15 lines
256 B
Objective-C
15 lines
256 B
Objective-C
//
|
|
// main.m
|
|
// MacFreeRDP
|
|
//
|
|
// Created by Thomas Goddard on 5/8/12.
|
|
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
return NSApplicationMain(argc, (const char **)argv);
|
|
}
|