Ver código fonte

Fixed Wayland EGL pkg-config module name.

The wayland-egl module also includes wayland-client.

Fixes #317.
Ricardo Vieira 11 anos atrás
pai
commit
3eae79f6e0
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      CMakeLists.txt

+ 1 - 1
CMakeLists.txt

@@ -296,7 +296,7 @@ endif()
 #--------------------------------------------------------------------
 if (_GLFW_WAYLAND)
     find_package(Wayland REQUIRED)
-    set(GLFW_PKG_DEPS "${GLFW_PKG_DEPS} wayland")
+    set(GLFW_PKG_DEPS "${GLFW_PKG_DEPS} wayland-egl")
 
     list(APPEND glfw_INCLUDE_DIRS ${WAYLAND_INCLUDE_DIR})
     list(APPEND glfw_LIBRARIES ${WAYLAND_LIBRARIES} -pthread)