update embree (#4792)

pull/4795/head
Hoildkv 8 months ago committed by GitHub
parent 8f07dc75ee
commit dd45104700
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 7
      packages/e/embree/xmake.lua

@ -4,14 +4,15 @@ package("embree")
set_description("Intel® Embree is a collection of high-performance ray tracing kernels, developed at Intel.")
set_license("Apache-2.0")
add_urls("https://github.com/embree/embree/archive/$(version).tar.gz",
"https://github.com/embree/embree.git")
add_urls("https://github.com/RenderKit/embree/archive/refs/tags/$(version).tar.gz",
"https://github.com/RenderKit/embree.git")
add_versions("v3.12.1", "0c9e760b06e178197dd29c9a54f08ff7b184b0487b5ba8b8be058e219e23336e")
add_versions("v3.13.0", "4d86a69508a7e2eb8710d571096ad024b5174834b84454a8020d3a910af46f4f")
add_versions("v3.13.3", "74ec785afb8f14d28ea5e0773544572c8df2e899caccdfc88509f1bfff58716f")
add_versions("v3.13.4", "e6a8d1d4742f60ae4d936702dd377bc4577a3b034e2909adb2197d0648b1cb35")
add_versions("v3.13.5", "b8c22d275d9128741265537c559d0ea73074adbf2f2b66b0a766ca52c52d665b")
add_versions("v4.3.0", "baf0a57a45837fc055ba828a139467bce0bc0c6a9a5f2dccb05163d012c12308")
add_versions("v4.3.3", "baf0a57a45837fc055ba828a139467bce0bc0c6a9a5f2dccb05163d012c12308")
-- Not recommanded to build embree as a static library.
add_configs("shared", {description = "Build shared library.", default = true, type = "boolean"})
@ -30,7 +31,7 @@ package("embree")
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
table.insert(configs, "-DEMBREE_STATIC_LIB=" .. (package:config("shared") and "OFF" or "ON"))
if package:is_plat("windows") then
table.insert(configs, "-DUSE_STATIC_RUNTIME=" .. (package:config("vs_runtime"):startswith("MT") and "ON" or "OFF"))
table.insert(configs, "-DUSE_STATIC_RUNTIME=" .. (package:has_runtime("MT", "MTd") and "ON" or "OFF"))
end
if package:is_plat("macosx") and package:is_arch("x86_64") and not package:config("shared") then
table.insert(configs, "-DEMBREE_MAX_ISA=DEFAULT")

Loading…
Cancel
Save