package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.3 KiB
32 lines
1.3 KiB
package("dlpack") |
|
set_homepage("https://dmlc.github.io/dlpack/latest") |
|
set_description("common in-memory tensor structure ") |
|
set_license("Apache-2.0") |
|
|
|
add_urls("https://github.com/dmlc/dlpack/archive/refs/tags/$(version).tar.gz", |
|
"https://github.com/dmlc/dlpack.git") |
|
|
|
add_versions("v1.0", "f8cfdcb634ff3cf0e3d9a3426e019e1c6469780a3b0020c9bc4ecc09cf9abcb1") |
|
add_versions("v0.8", "cf965c26a5430ba4cc53d61963f288edddcd77443aa4c85ce722aaf1e2f29513") |
|
|
|
add_configs("contrib", {description = "Build in progress unstable libraries", default = false, type = "boolean"}) |
|
|
|
add_deps("cmake") |
|
|
|
on_load(function (package) |
|
if not package:config("contrib") then |
|
package:set("kind", "library", {headeronly = true}) |
|
end |
|
end) |
|
|
|
on_install(function (package) |
|
local configs = {} |
|
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release")) |
|
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF")) |
|
table.insert(configs, "-DBUILD_MOCK=" .. (package:config("contrib") and "ON" or "OFF")) |
|
import("package.tools.cmake").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_ctypes("DLDevice", {includes = "dlpack/dlpack.h"})) |
|
end)
|
|
|