1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 07:07:25 -04:00

Disabled Wayland on OS X.

This commit is contained in:
Camilla Berglund 2014-04-08 18:24:02 +02:00
parent 9becd733af
commit f1cb1f8420

View File

@ -31,7 +31,7 @@ else()
option(GLFW_USE_EGL "Use EGL for context creation" OFF) option(GLFW_USE_EGL "Use EGL for context creation" OFF)
endif() endif()
if (UNIX) if (UNIX AND NOT APPLE)
option(GLFW_USE_WAYLAND "Use Wayland for context creation (implies EGL as well)" OFF) option(GLFW_USE_WAYLAND "Use Wayland for context creation (implies EGL as well)" OFF)
endif() endif()