Полная работа с клавитурой

This commit is contained in:
2025-11-16 16:43:21 +03:00
parent 9cdc529918
commit b11a56ad06
2 changed files with 170 additions and 1 deletions

View File

@@ -47,4 +47,9 @@ add_dependencies(wayland generate-xdg-shell)
pkg_check_modules(WAYLAND_CLIENT REQUIRED wayland-client)
target_link_libraries(wayland ${WAYLAND_CLIENT_LIBRARIES})
target_include_directories(wayland PRIVATE ${WAYLAND_CLIENT_INCLUDE_DIRS} ${CMAKE_CURRENT_BINARY_DIR})
target_include_directories(wayland PRIVATE ${WAYLAND_CLIENT_INCLUDE_DIRS} ${CMAKE_CURRENT_BINARY_DIR})
# xkbcommon for keyboard layout handling
pkg_check_modules(XKBCOMMON REQUIRED xkbcommon)
target_include_directories(wayland PRIVATE ${XKBCOMMON_INCLUDE_DIRS})
target_link_libraries(wayland ${XKBCOMMON_LIBRARIES})