xmake.lua 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package("embree")
  2. set_homepage("https://www.embree.org/")
  3. set_description("Intel® Embree is a collection of high-performance ray tracing kernels, developed at Intel.")
  4. set_license("Apache-2.0")
  5. add_urls("https://github.com/embree/embree/archive/$(version).tar.gz",
  6. "https://github.com/embree/embree.git")
  7. add_versions("v3.12.1", "0c9e760b06e178197dd29c9a54f08ff7b184b0487b5ba8b8be058e219e23336e")
  8. add_versions("v3.13.0", "4d86a69508a7e2eb8710d571096ad024b5174834b84454a8020d3a910af46f4f")
  9. add_versions("v3.13.3", "74ec785afb8f14d28ea5e0773544572c8df2e899caccdfc88509f1bfff58716f")
  10. add_versions("v3.13.4", "e6a8d1d4742f60ae4d936702dd377bc4577a3b034e2909adb2197d0648b1cb35")
  11. add_versions("v3.13.5", "b8c22d275d9128741265537c559d0ea73074adbf2f2b66b0a766ca52c52d665b")
  12. add_versions("v4.3.0", "baf0a57a45837fc055ba828a139467bce0bc0c6a9a5f2dccb05163d012c12308")
  13. -- Not recommanded to build embree as a static library.
  14. add_configs("shared", {description = "Build shared library.", default = true, type = "boolean"})
  15. add_deps("cmake", "tbb")
  16. if is_plat("windows") then
  17. add_syslinks("advapi32")
  18. end
  19. on_install("macosx", "linux", "windows|x64", "windows|x86", function (package)
  20. if package:version():lt("4.0.0") then
  21. package:add("links", "embree3", "embree_sse42", "embree_avx", "embree_avx2", "embree_avx512", "tasking", "simd", "lexers", "math", "sys")
  22. end
  23. io.replace("common/tasking/CMakeLists.txt", "include(installTBB)", "", {plain = true})
  24. local configs = {"-DBUILD_TESTING=OFF", "-DBUILD_DOC=OFF", "-DEMBREE_TUTORIALS=OFF", "-DEMBREE_ISPC_SUPPORT=OFF"}
  25. table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
  26. table.insert(configs, "-DEMBREE_STATIC_LIB=" .. (package:config("shared") and "OFF" or "ON"))
  27. if package:is_plat("windows") then
  28. table.insert(configs, "-DUSE_STATIC_RUNTIME=" .. (package:config("vs_runtime"):startswith("MT") and "ON" or "OFF"))
  29. end
  30. if package:is_plat("macosx") and package:is_arch("x86_64") and not package:config("shared") then
  31. table.insert(configs, "-DEMBREE_MAX_ISA=DEFAULT")
  32. end
  33. import("package.tools.cmake").install(package, configs)
  34. end)
  35. on_test(function (package)
  36. local major_version = package:version():major()
  37. local includes = "embree" .. major_version .. "/rtcore.h"
  38. assert(package:check_cxxsnippets({test = [[
  39. #include <cassert>
  40. void test() {
  41. RTCDevice device = rtcNewDevice(NULL);
  42. assert(device != NULL);
  43. }
  44. ]]}, {configs = {languages = "c++11"}, includes = includes}))
  45. end)