# - Find the lxqt-globalkeys include and library dirs and define a some macros # # The module defines the following variables # LXQT_GLOBALKEYS_FOUND - Set to TRUE if all of the above has been found # # Typical usage: # find_package(lxqt-globalkeys) # add_executable(use-lxqt-globalkeys main.cpp) # target_link_libraries(use-lxqt-globalkeys lxqt-globalkeys) @PACKAGE_INIT@ include(CMakeFindDependencyMacro) set(LXQT_GLOBALKEYS_MAJOR_VERSION @LXQT_MAJOR_VERSION@) set(LXQT_GLOBALKEYS_MINOR_VERSION @LXQT_MINOR_VERSION@) set(LXQT_GLOBALKEYS_PATCH_VERSION @LXQT_PATCH_VERSION@) set(LXQT_GLOBALKEYS_VERSION @LXQT_VERSION@) find_dependency(Qt5Widgets) find_dependency(Qt5DBus) if (CMAKE_VERSION VERSION_GREATER 2.8.12) cmake_policy(SET CMP0024 OLD) endif() include("${CMAKE_CURRENT_LIST_DIR}/lxqt-globalkeys-targets.cmake")