You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
912 B
28 lines
912 B
# - Find the lxqt-globalkeys-ui include and library dirs and define a some macros
|
|
#
|
|
# The module defines the following variables
|
|
# LXQT_GLOBALKEYS_UI_FOUND - Set to TRUE if all of the above has been found
|
|
#
|
|
# Typical usage:
|
|
# find_package(lxqt-globalkeys-ui)
|
|
# add_executable(use-lxqt-globalkeys-ui main.cpp)
|
|
# target_link_libraries(use-lxqt-globalkeys-ui lxqt-globalkeys-ui)
|
|
|
|
@PACKAGE_INIT@
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
|
|
set(LXQT_GLOBALKEYS_UI_MAJOR_VERSION @LXQT_MAJOR_VERSION@)
|
|
set(LXQT_GLOBALKEYS_UI_MINOR_VERSION @LXQT_MINOR_VERSION@)
|
|
set(LXQT_GLOBALKEYS_UI_PATCH_VERSION @LXQT_PATCH_VERSION@)
|
|
set(LXQT_GLOBALKEYS_UI_VERSION @LXQT_VERSION@)
|
|
|
|
find_dependency(Qt5Widgets)
|
|
find_dependency(Qt5DBus)
|
|
find_dependency(lxqt-globalkeys)
|
|
|
|
if (CMAKE_VERSION VERSION_GREATER 2.8.12)
|
|
cmake_policy(SET CMP0024 OLD)
|
|
endif()
|
|
include("${CMAKE_CURRENT_LIST_DIR}/lxqt-globalkeys-ui-targets.cmake")
|