forked from pyrite-dev/milsko
8 lines
337 B
Mathematica
8 lines
337 B
Mathematica
|
|
#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];
|
||
|
|
}
|