3
0
mirror of https://github.com/hyprwm/Hyprland.git synced 2026-02-04 10:45:22 +00:00

cmake: fix XKBCOMMON variable typo (#12550)

This commit is contained in:
norinorin
2025-12-06 07:48:38 +07:00
committed by GitHub
parent 222dbe99d0
commit cedadf4fdc
2 changed files with 3 additions and 3 deletions

View File

@ -235,7 +235,7 @@ configure_file(
set_source_files_properties(${CMAKE_SOURCE_DIR}/src/version.h PROPERTIES GENERATED TRUE)
set(XKBCOMMMON_MINIMUM_VERSION 1.11.0)
set(XKBCOMMON_MINIMUM_VERSION 1.11.0)
set(WAYLAND_SERVER_MINIMUM_VERSION 1.22.90)
set(WAYLAND_SERVER_PROTOCOLS_MINIMUM_VERSION 1.45)
set(LIBINPUT_MINIMUM_VERSION 1.28)
@ -244,7 +244,7 @@ pkg_check_modules(
deps
REQUIRED
IMPORTED_TARGET GLOBAL
xkbcommon>=${XKBCOMMMON_MINIMUM_VERSION}
xkbcommon>=${XKBCOMMON_MINIMUM_VERSION}
uuid
wayland-server>=${WAYLAND_SERVER_MINIMUM_VERSION}
wayland-protocols>=${WAYLAND_SERVER_PROTOCOLS_MINIMUM_VERSION}