milsko/src/backend/nococoa.m

9 lines
367 B
Mathematica
Raw Normal View History

2026-04-26 20:31:09 -07:00
#include <Mw/Milsko.h>
2026-04-26 22:20:50 -07:00
#import <AppKit/AppKit.h>
2026-04-26 20:31:09 -07:00
2026-04-26 22:12:00 -07:00
void MwLLNoCocoaErrorMessage(void) {
2026-04-26 20:31:09 -07:00
NSAlert* alert = [[NSAlert alloc] init];
[alert setMessageText:@"Milsko applications currently requires XQuartz or cocoa-way. PRs are welcome for anyone who wants to finish the Cocoa backend (prefarably in Objective-C)"];
[alert addButtonWithTitle:@"Ok"];
[alert runModal];
}