milsko/src/backend/nococoa.m

8 lines
337 B
Mathematica
Raw Normal View History

2026-04-26 20:31:09 -07:00
#include <Mw/Milsko.h>
void MwLLNoCocoaErrorMessage() {
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];
}