summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-test
diff options
context:
space:
mode:
authorPeter Marko <peter.marko@siemens.com>2022-10-28 12:59:10 +0200
committerKhem Raj <raj.khem@gmail.com>2022-10-28 10:05:38 -0700
commit8c0402f7c47188cef1d6afc68c0427124940ea57 (patch)
tree827be13afb937e7ab5d6b6b6c96b632cf6728095 /meta-oe/recipes-test
parent8210e5904c7c69fc1a352fdb1fb4cf4cb50e06ce (diff)
downloadmeta-openembedded-8c0402f7c47188cef1d6afc68c0427124940ea57.tar.gz
cpputest: add possibility to build extensions
Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-test')
-rw-r--r--meta-oe/recipes-test/cpputest/cpputest_4.0.bb4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-oe/recipes-test/cpputest/cpputest_4.0.bb b/meta-oe/recipes-test/cpputest/cpputest_4.0.bb
index d923e7ac9..5536cf07b 100644
--- a/meta-oe/recipes-test/cpputest/cpputest_4.0.bb
+++ b/meta-oe/recipes-test/cpputest/cpputest_4.0.bb
@@ -15,9 +15,11 @@ inherit cmake
15EXTRA_OECMAKE = "-DLONGLONG=ON \ 15EXTRA_OECMAKE = "-DLONGLONG=ON \
16 -DC++11=ON \ 16 -DC++11=ON \
17 -DTESTS=OFF \ 17 -DTESTS=OFF \
18 -DEXTENSIONS=OFF \
19 " 18 "
20 19
21DEV_PKG_DEPENDENCY = "" 20DEV_PKG_DEPENDENCY = ""
22 21
23FILES:${PN}-dev += "${libdir}/CppUTest/cmake/*" 22FILES:${PN}-dev += "${libdir}/CppUTest/cmake/*"
23
24PACKAGECONFIG ??= ""
25PACKAGECONFIG[extensions] = "-DEXTENSIONS=ON,-DEXTENSIONS=OFF"