summaryrefslogtreecommitdiffstats
path: root/waftools/fragments/cocoa.m
diff options
context:
space:
mode:
Diffstat (limited to 'waftools/fragments/cocoa.m')
-rw-r--r--waftools/fragments/cocoa.m16
1 files changed, 0 insertions, 16 deletions
diff --git a/waftools/fragments/cocoa.m b/waftools/fragments/cocoa.m
deleted file mode 100644
index 91b3aaa585..0000000000
--- a/waftools/fragments/cocoa.m
+++ /dev/null
@@ -1,16 +0,0 @@
-#import <CoreServices/CoreServices.h>
-#import <OpenGL/OpenGL.h>
-#import <Cocoa/Cocoa.h>
-
-#include "osdep/macosx_compat.h"
-
-int main(int argc, char **argv)
-{
- @autoreleasepool {
- NSArray *ary = @[@1, @2, @3];
- NSLog(@"test subscripting: %@", ary[0]);
- NSApplicationLoad();
- CVDisplayLinkRef link;
- CVDisplayLinkCreateWithCGDisplay(0, &link);
- }
-}