diff options
author | Akemi <der.richter@gmx.de> | 2017-02-25 21:56:59 +0100 |
---|---|---|
committer | Akemi <der.richter@gmx.de> | 2017-03-26 20:26:18 +0200 |
commit | f8a223b7aca08491e22438df0f1ea233d602907c (patch) | |
tree | 4547edcf3b4f0ed7b37bdd1cdf42221328964dff /waftools | |
parent | afbd657bb8e955accf8022c96e867973c1fb0a41 (diff) |
osx: initial Touch Bar support
Diffstat (limited to 'waftools')
-rw-r--r-- | waftools/fragments/touchbar.m | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/waftools/fragments/touchbar.m b/waftools/fragments/touchbar.m new file mode 100644 index 0000000000..3fa4f27aa1 --- /dev/null +++ b/waftools/fragments/touchbar.m @@ -0,0 +1,7 @@ +#import <AppKit/AppKit.h> + +int main(int argc, char **argv) +{ + [[NSTouchBar alloc] init]; + return 0; +} |