diff options
author | Mike Crowe <mac@mcrowe.com> | 2018-01-06 20:08:58 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-07 12:28:30 +0000 |
commit | d91dc4666683a96e9d03cbbd21b8a546f9069c93 (patch) | |
tree | 1387622b5e040aee56e4c269e45ad9f6b66945bf /meta | |
parent | e03cfb5a04e359c0bacb002dc80f3348301445d3 (diff) | |
download | openembedded-core-d91dc4666683a96e9d03cbbd21b8a546f9069c93.tar.gz openembedded-core-d91dc4666683a96e9d03cbbd21b8a546f9069c93.tar.bz2 openembedded-core-d91dc4666683a96e9d03cbbd21b8a546f9069c93.zip |
cmake: Always put cmake package files in -dev packages
Various recipes that inherit cmake contain FILES_${PN}-dev magic to add the
generated package files to their -dev packages. Since this is a standard
feature of cmake, we might as well teach cmake.bbclass to do this itself so
those recipes can be simpler.
Signed-off-by: Mike Crowe <mac@mcrowe.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/cmake.bbclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/cmake.bbclass b/meta/classes/cmake.bbclass index ac2c1519b0..a4079dab0d 100644 --- a/meta/classes/cmake.bbclass +++ b/meta/classes/cmake.bbclass @@ -34,6 +34,8 @@ EXTRA_OECMAKE_append = " ${PACKAGECONFIG_CONFARGS}" EXTRA_OECMAKE_BUILD_prepend_task-compile = "${PARALLEL_MAKE} " EXTRA_OECMAKE_BUILD_prepend_task-install = "${PARALLEL_MAKEINST} " +FILES_${PN}-dev += "${libdir}/cmake ${datadir}/cmake" + # CMake expects target architectures in the format of uname(2), # which do not always match TARGET_ARCH, so all the necessary # conversions should happen here. |