mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
33 lines
946 B
CMake
33 lines
946 B
CMake
# SPDX-FileCopyrightText: 2016 Harald Sitter <sitter@kde.org>
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
if(NOT DEFINED CMAKE_SUPPRESS_DEVELOPER_WARNINGS)
|
|
set(CMAKE_SUPPRESS_DEVELOPER_WARNINGS 1 CACHE INTERNAL "No dev warnings")
|
|
endif()
|
|
|
|
include(FindPkgConfig)
|
|
|
|
pkg_check_modules(Plymouth ply-boot-client ply-splash-core)
|
|
exec_program(${PKG_CONFIG_EXECUTABLE}
|
|
ARGS ply-splash-core --variable=pluginsdir
|
|
OUTPUT_VARIABLE Plymouth_PLUGINSDIR)
|
|
exec_program(${PKG_CONFIG_EXECUTABLE}
|
|
ARGS ply-splash-core --variable=themesdir
|
|
OUTPUT_VARIABLE Plymouth_THEMESDIR)
|
|
|
|
find_package_handle_standard_args(Plymouth
|
|
FOUND_VAR
|
|
Plymouth_FOUND
|
|
REQUIRED_VARS
|
|
Plymouth_LIBRARIES
|
|
VERSION_VAR
|
|
Plymouth_VERSION
|
|
HANDLE_COMPONENTS
|
|
)
|
|
|
|
include(FeatureSummary)
|
|
set_package_properties(Plymouth PROPERTIES
|
|
URL "https://www.freedesktop.org/wiki/Software/Plymouth/"
|
|
DESCRIPTION "Plymouth development files."
|
|
)
|