mirror of
https://invent.kde.org/packaging/yocto-meta-kf5.git
synced 2026-01-29 21:08:43 +01:00
The preferred way for bitbake classes is the append syntax because it does not interact with the += syntax in derived recipes.
14 lines
298 B
Plaintext
14 lines
298 B
Plaintext
# Class for recipes using KAuth host tools
|
|
#
|
|
# SPDX-FileCopyrightText: 2019 Volker Krause <vkrause@kde.org>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
DEPENDS:append = " \
|
|
kauth \
|
|
kauth-native \
|
|
polkit-qt-1 \
|
|
"
|
|
|
|
EXTRA_OECMAKE:append = " -DKF5_HOST_TOOLING=${STAGING_DIR_NATIVE}/${libdir}/cmake"
|