mirror of
https://github.com/Fishwaldo/yocto-meta-kf5.git
synced 2025-03-15 11:41:37 +00:00
Platforms which uses the multilib feature can not use this layer because the libdir variable will be change by the multilib bbclass. Using STAGING_LIBDIR_NATIVE instead is more reliable.
17 lines
504 B
Text
17 lines
504 B
Text
# Class for recipes using kcoreaddons host tools
|
|
#
|
|
# SPDX-FileCopyrightText: 2019 Volker Krause <vkrause@kde.org>
|
|
# SPDX-FileCopyrightText: 2022 Andreas Cord-Landwehr <cordlandwehr@kde.org>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
DEPENDS:append = " \
|
|
kcoreaddons \
|
|
kcoreaddons-native \
|
|
"
|
|
|
|
# for crosscompilation desktoptojson uses CMAKE_SYSROOT as root path for locating files
|
|
EXTRA_OECMAKE:append = " \
|
|
-DKF5_HOST_TOOLING=${STAGING_LIBDIR_NATIVE}/cmake \
|
|
-DCMAKE_SYSROOT=${RECIPE_SYSROOT} \
|
|
"
|