Преглед на файлове

X11: Fix CMake check for XInput headers

The X11_Xinput_* variables have been removed in recent CMake, leaving
only the X11_Xi_* set.

Related to #1480.
Camilla Löwy преди 6 години
родител
ревизия
ceb16cb5f1
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      CMakeLists.txt

+ 2 - 2
CMakeLists.txt

@@ -222,7 +222,7 @@ if (_GLFW_X11)
     endif()
 
     # Check for XInput (modern HID input)
-    if (NOT X11_Xinput_INCLUDE_PATH)
+    if (NOT X11_Xi_INCLUDE_PATH)
         message(FATAL_ERROR "The XInput headers were not found")
     endif()
 
@@ -230,7 +230,7 @@ if (_GLFW_X11)
                                   "${X11_Xinerama_INCLUDE_PATH}"
                                   "${X11_Xkb_INCLUDE_PATH}"
                                   "${X11_Xcursor_INCLUDE_PATH}"
-                                  "${X11_Xinput_INCLUDE_PATH}")
+                                  "${X11_Xi_INCLUDE_PATH}")
 endif()
 
 #--------------------------------------------------------------------