1fb9f6f13a
The main advantage of SPDX license identifiers over the traditional license headers is that it's more difficult to overlook inappropriate licenses for kwin, for example GPL 3. We also don't have to copy a lot of boilerplate text. In order to create this change, I ran licensedigger -r -c from the toplevel source directory.
13 lines
484 B
CMake
13 lines
484 B
CMake
#=============================================================================
|
|
# SPDX-FileCopyrightText: 2016 Martin Gräßlin <mgraesslin@kde.org>
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#=============================================================================
|
|
find_program(Xwayland_EXECUTABLE NAMES Xwayland)
|
|
find_package_handle_standard_args(Xwayland
|
|
FOUND_VAR
|
|
Xwayland_FOUND
|
|
REQUIRED_VARS
|
|
Xwayland_EXECUTABLE
|
|
)
|
|
mark_as_advanced(Xwayland_EXECUTABLE)
|