Renamed Wayland files to match prefix.

This commit is contained in:
Camilla Berglund 2014-04-08 17:20:42 +02:00
parent 48619a385e
commit 1127c0e6e5
8 changed files with 5 additions and 5 deletions

View File

@ -30,11 +30,11 @@ elseif (_GLFW_X11)
x11_monitor.c x11_window.c x11_unicode.c linux_joystick.c
posix_time.c posix_tls.c)
elseif (_GLFW_WAYLAND)
set(glfw_HEADERS ${common_HEADERS} wayland_platform.h linux_joystick.h
set(glfw_HEADERS ${common_HEADERS} wl_platform.h linux_joystick.h
posix_time.h posix_tls.h)
set(glfw_SOURCES ${common_SOURCES} wayland_clipboard.c wayland_gamma.c
wayland_init.c wayland_monitor.c wayland_window.c
linux_joystick.c posix_time.c posix_tls.c)
set(glfw_SOURCES ${common_SOURCES} wl_clipboard.c wl_gamma.c wl_init.c
wl_monitor.c wl_window.c linux_joystick.c posix_time.c
posix_tls.c)
endif()
if (_GLFW_EGL)

View File

@ -73,7 +73,7 @@ typedef struct _GLFWcursor _GLFWcursor;
#elif defined(_GLFW_X11)
#include "x11_platform.h"
#elif defined(_GLFW_WAYLAND)
#include "wayland_platform.h"
#include "wl_platform.h"
#else
#error "No supported window creation API selected"
#endif