mirror of
https://invent.kde.org/packaging/yocto-meta-kf5.git
synced 2026-02-07 17:26:37 +01:00
18 lines
434 B
Plaintext
18 lines
434 B
Plaintext
# Class for recipes using kcoreaddons host tools
|
|
#
|
|
# SPDX-FileCopyrightText: 2019 Volker Krause <vkrause@kde.org>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
do_compile:prepend() {
|
|
# desktoptojson needs to find installed service type files
|
|
export XDG_DATA_DIRS=${STAGING_DATADIR}:$XDG_DATA_DIRS
|
|
}
|
|
|
|
DEPENDS += " \
|
|
kcoreaddons \
|
|
kcoreaddons-native \
|
|
"
|
|
|
|
EXTRA_OECMAKE += " -DKF5_HOST_TOOLING=${STAGING_DIR_NATIVE}/${libdir}/cmake"
|