mirror of
https://github.com/gnustep/libs-back.git
synced 2025-05-30 00:40:55 +00:00
Dirty Wayland backend implementation.
This commit is contained in:
parent
ecfa661d7a
commit
81456203b2
13 changed files with 2772 additions and 7 deletions
|
@ -45,6 +45,11 @@
|
|||
@interface WIN32Server (Initialize)
|
||||
+ (void) initializeBackend;
|
||||
@end
|
||||
#elif BUILD_SERVER == SERVER_wayland
|
||||
#include <wayland/WaylandServer.h>
|
||||
@interface WaylandServer (Initialize)
|
||||
+ (void) initializeBackend;
|
||||
@end
|
||||
#endif
|
||||
|
||||
/* Call the correct initalization routines for the choosen
|
||||
|
@ -63,6 +68,8 @@
|
|||
[XGServer initializeBackend];
|
||||
#elif BUILD_SERVER == SERVER_win32
|
||||
[WIN32Server initializeBackend];
|
||||
#elif BUILD_SERVER == SERVER_wayland
|
||||
[WaylandServer initializeBackend];
|
||||
#else
|
||||
[NSException raise: NSInternalInconsistencyException
|
||||
format: @"No Window Server configured in backend"];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue