Files
tdesktop/Telegram/ThirdParty/fcitx5-qt/cmake/FindXKBCommon.cmake
allhaileris afb81b8278
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
init
2026-02-16 15:50:16 +03:00

45 lines
1.2 KiB
CMake

include(ECMFindModuleHelpersStub)
ecm_find_package_version_check(XKBCommon)
# Note that this list needs to be ordered such that any component
# appears after its dependencies
set(XKBCommon_known_components
XKBCommon
X11)
set(XKBCommon_XKBCommon_component_deps)
set(XKBCommon_XKBCommon_pkg_config "xkbcommon")
set(XKBCommon_XKBCommon_lib "xkbcommon")
set(XKBCommon_XKBCommon_header "xkbcommon/xkbcommon.h")
set(XKBCommon_X11_component_deps XKBCommon)
set(XKBCommon_X11_pkg_config "xkbcommon-x11")
set(XKBCommon_X11_lib "xkbcommon-x11")
set(XKBCommon_X11_header "xkbcommon/xkbcommon-x11.h")
ecm_find_package_parse_components(XKBCommon
RESULT_VAR XKBCommon_components
KNOWN_COMPONENTS ${XKBCommon_known_components}
)
ecm_find_package_handle_library_components(XKBCommon
COMPONENTS ${XKBCommon_components}
)
find_package_handle_standard_args(XKBCommon
FOUND_VAR
XKBCommon_FOUND
REQUIRED_VARS
XKBCommon_LIBRARIES
VERSION_VAR
XKBCommon_VERSION
HANDLE_COMPONENTS
)
include(FeatureSummary)
set_package_properties(XKBCommon PROPERTIES
URL "http://xkbcommon.org"
DESCRIPTION "Keyboard handling library using XKB data"
)