add kompute (#912)

Signed-off-by: biobot <biobot94@gmail.com>
pull/913/head
biobot 3 years ago committed by GitHub
parent 84d27a2ef6
commit 087c36b29a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 26
      packages/k/kompute/xmake.lua

@ -0,0 +1,26 @@
package("kompute")
set_homepage("https://github.com/KomputeProject/kompute")
set_description("General purpose GPU compute framework for cross vendor graphics cards")
set_license("Apache-2.0")
add_urls("https://github.com/KomputeProject/kompute.git")
add_versions("v0.8.0", "9752c6325735434e53fe6fca96946fc1a3212ff951039d1202f1c0606843b24e")
add_deps("cmake", "vulkan-loader")
on_install("windows", function (package)
local configs = {}
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
table.insert(configs, "-DKOMPUTE_OPT_BUILD_AS_SHARED_LIB=" .. (package:config("shared") and "ON" or "OFF"))
table.insert(configs, "-DKOMPUTE_OPT_REPO_SUBMODULE_BUILD=" .. 1)
table.insert(configs, "-DKOMPUTE_OPT_INSTALL=" .. 1)
import("package.tools.cmake").install(package, configs)
os.cp("single_include", package:installdir())
os.cp("external/fmt/include", package:installdir())
end)
on_test(function (package)
assert(package:has_cxxtypes("kp::Manager", {includes = "kompute/Kompute.hpp"}))
end)
package_end()
Loading…
Cancel
Save