Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Plasma
KWin
Commits
9b15f973
Commit
9b15f973
authored
Aug 27, 2020
by
Vlad Zahorodnii
Browse files
Switch to upstream version of FindWaylandProtocols
FindWaylandProtocols has been upstreamed to ECM.
parent
bef0f305
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/wayland/cmake/Modules/FindWaylandProtocols.cmake
deleted
100644 → 0
View file @
bef0f305
#.rst:
# FindWaylandProtocols
# -------
#
# Try to find wayland-protocols on a Unix system.
#
# This will define the following variables:
#
# ``WaylandProtocols_FOUND``
# True if (the requested version of) wayland-protocols is available
# ``WaylandProtocols_VERSION``
# The version of wayland-protocols
# ``WaylandProtocols_DATADIR``
# The wayland protocols data directory
#=============================================================================
# SPDX-FileCopyrightText: 2019 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
#
# SPDX-License-Identifier: BSD-3-Clause
#=============================================================================
find_package
(
PkgConfig
)
pkg_check_modules
(
PKG_wayland_protocols QUIET wayland-protocols
)
set
(
WaylandProtocols_VERSION
${
PKG_wayland_protocols_VERSION
}
)
pkg_get_variable
(
WaylandProtocols_DATADIR wayland-protocols pkgdatadir
)
include
(
FindPackageHandleStandardArgs
)
find_package_handle_standard_args
(
WaylandProtocols
FOUND_VAR WaylandProtocols_FOUND
REQUIRED_VARS WaylandProtocols_DATADIR
VERSION_VAR WaylandProtocols_VERSION
)
include
(
FeatureSummary
)
set_package_properties
(
WaylandProtocols PROPERTIES
DESCRIPTION
"Specifications of extended Wayland protocols"
URL
"https://wayland.freedesktop.org/"
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment