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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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}