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.
 
 
 

45 lines
2.1 KiB

package("vulkan-utility-libraries")
set_homepage("https://github.com/KhronosGroup/Vulkan-Utility-Libraries")
set_description("Utility libraries for Vulkan developers")
set_license("Apache-2.0")
add_urls("https://github.com/KhronosGroup/Vulkan-Utility-Libraries.git")
add_urls("https://github.com/KhronosGroup/Vulkan-Utility-Libraries/archive/refs/tags/$(version).tar.gz", {version = function (version)
local prefix = "sdk-"
if version:gt("1.3.261+1") then
prefix = "vulkan-sdk-"
end
return version:startswith("v") and version or prefix .. version:gsub("%+", ".")
end})
add_versions("v1.3.290", "5173690276d25e51b63132ed6907542b9bc2d64150db0fe057ff59067493e33c")
add_versions("v1.3.283", "a446616dede2b0168726f4e1b51777ba5c20ec46c475b378e2c07fd4ab4375ee")
add_versions("v1.3.280", "075e13f2fdeeca3bb6fb39155c8cc345cf216ab93661549b1a33368aa28a9dea")
add_versions("v1.3.275", "96d3ec7bda7b6e9fabbb471c570104a7b1cb56928d097dd0441c96129468b888")
add_versions("v1.3.268", "990de84b66094b647ae420ba13356b79d69e1c6f95532f40466457d51a9d127d")
if is_plat("windows") then
add_syslinks("advapi32")
end
add_deps("cmake")
add_deps("vulkan-headers")
if is_plat("mingw") and is_subhost("msys") then
add_extsources("pacman::vulkan-utility-libraries")
elseif is_plat("linux") then
add_extsources("apt::vulkan-utility-libraries-dev", "pacman::vulkan-utility-libraries")
elseif is_plat("macosx") then
add_extsources("brew::vulkan-utility-libraries")
end
on_install("windows", "linux", "macosx", "bsd", "mingw", "msys", "cross", function (package)
local configs = {"-DBUILD_TESTS=OFF", "-DUPDATE_DEPS=OFF"}
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"))
import("package.tools.cmake").install(package, configs)
end)
on_test(function (package)
assert(package:has_cfuncs("vkuCreateLayerSettingSet", {includes = "vulkan/layer/vk_layer_settings.h"}))
end)