summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools
diff options
context:
space:
mode:
authorPeter Marko <peter.marko@siemens.com>2024-03-13 17:39:04 +0100
committerKhem Raj <raj.khem@gmail.com>2024-03-13 10:14:56 -0700
commit0be30bee7a71dc299e3938daed168363ec063071 (patch)
tree8f70135992bb501ee30e7c3c4fe4b7a15d0c5e98 /meta-oe/recipes-devtools
parent63250c3ba81d06acdfa4b3acad460b0e80f0f077 (diff)
downloadmeta-openembedded-0be30bee7a71dc299e3938daed168363ec063071.tar.gz
jwt-cpp: fix cmake file install path
jwt-cpp module cannot be found with default find_package options. Per [1] package name is mandatory on unix build installations. [1] https://cmake.org/cmake/help/latest/command/find_package.html#search-procedure Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools')
-rw-r--r--meta-oe/recipes-devtools/jwt-cpp/jwt-cpp_0.7.0.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-devtools/jwt-cpp/jwt-cpp_0.7.0.bb b/meta-oe/recipes-devtools/jwt-cpp/jwt-cpp_0.7.0.bb
index 87f7f1a6d..19424337f 100644
--- a/meta-oe/recipes-devtools/jwt-cpp/jwt-cpp_0.7.0.bb
+++ b/meta-oe/recipes-devtools/jwt-cpp/jwt-cpp_0.7.0.bb
@@ -15,6 +15,6 @@ DEPENDS = "openssl"
15 15
16inherit cmake 16inherit cmake
17 17
18EXTRA_OECMAKE += "-DJWT_BUILD_EXAMPLES=OFF -DJWT_CMAKE_FILES_INSTALL_DIR=${libdir}/cmake" 18EXTRA_OECMAKE += "-DJWT_BUILD_EXAMPLES=OFF -DJWT_CMAKE_FILES_INSTALL_DIR=${libdir}/cmake/${BPN}"
19 19
20BBCLASSEXTEND = "nativesdk" 20BBCLASSEXTEND = "nativesdk"