summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYogesh Tyagi <yogesh.tyagi@intel.com>2025-12-31 18:58:44 +0530
committerYogesh Tyagi <yogesh.tyagi@intel.com>2026-01-01 19:52:41 +0530
commitebf41329d372a384dd94828ce9d7d6b8061b9c1e (patch)
tree914daf60155948618efbbb1938823ee9f947d772
parent36e44b684cc74e5d3112f7e430e8ef563d69ee92 (diff)
downloadmeta-intel-ebf41329d372a384dd94828ce9d7d6b8061b9c1e.tar.gz
embree : make the building of tutorials configurable
Signed-off-by: Yogesh Tyagi <yogesh.tyagi@intel.com>
-rw-r--r--dynamic-layers/openembedded-layer/recipes-oneapi/embree/embree_4.3.3.bb6
1 files changed, 4 insertions, 2 deletions
diff --git a/dynamic-layers/openembedded-layer/recipes-oneapi/embree/embree_4.3.3.bb b/dynamic-layers/openembedded-layer/recipes-oneapi/embree/embree_4.3.3.bb
index 77549479..30d26244 100644
--- a/dynamic-layers/openembedded-layer/recipes-oneapi/embree/embree_4.3.3.bb
+++ b/dynamic-layers/openembedded-layer/recipes-oneapi/embree/embree_4.3.3.bb
@@ -17,14 +17,16 @@ SRCREV = "5730b150471602d6dc02d9b7d8a4a6ce9ceffe16"
17COMPATIBLE_HOST = '(x86_64).*-linux' 17COMPATIBLE_HOST = '(x86_64).*-linux'
18COMPATIBLE_HOST:libc-musl = "null" 18COMPATIBLE_HOST:libc-musl = "null"
19 19
20DEPENDS = "tbb jpeg libpng glfw ispc-native" 20DEPENDS = "tbb jpeg libpng ispc-native"
21 21
22EXTRA_OECMAKE += " \ 22EXTRA_OECMAKE += " \
23 -DEMBREE_IGNORE_CMAKE_CXX_FLAGS=OFF \ 23 -DEMBREE_IGNORE_CMAKE_CXX_FLAGS=OFF \
24 -DEMBREE_MAX_ISA=DEFAULT \ 24 -DEMBREE_MAX_ISA=DEFAULT \
25 -DEMBREE_TUTORIALS=OFF \
26 -DEMBREE_ISPC_SUPPORT=ON \ 25 -DEMBREE_ISPC_SUPPORT=ON \
27 -DEMBREE_ZIP_MODE=OFF \ 26 -DEMBREE_ZIP_MODE=OFF \
28 " 27 "
28# When tutorials are enabled, glvnd needs to be enabled:
29# DISTRO_FEATURES += "glvnd"
30PACKAGECONFIG[tutorial] = "-DEMBREE_TUTORIALS=ON,-DEMBREE_TUTORIALS=OFF,glfw"
29 31
30UPSTREAM_CHECK_GITTAGREGEX = "^v(?P<pver>(\d+(\.\d+)+))$" 32UPSTREAM_CHECK_GITTAGREGEX = "^v(?P<pver>(\d+(\.\d+)+))$"