Преглед на файлове

add vulkan-memory-allocator-hpp (#1925)

* add vulkan-memory-allocator-hpp

* modify support platform
Frank Zhuang преди 2 години
родител
ревизия
68b6253997
променени са 1 файла, в които са добавени 25 реда и са изтрити 0 реда
  1. 25 0
      packages/v/vulkan-memory-allocator-hpp/xmake.lua

+ 25 - 0
packages/v/vulkan-memory-allocator-hpp/xmake.lua

@@ -0,0 +1,25 @@
+package("vulkan-memory-allocator-hpp")
+    set_kind("library", {headeronly = true})
+    set_homepage("https://gpuopen-librariesandsdks.github.io/VulkanMemoryAllocator/html/")
+    set_description("C++ bindings for VulkanMemoryAllocator.")
+    set_license("CC0")
+
+    add_urls("https://github.com/YaaZ/VulkanMemoryAllocator-Hpp/archive/refs/tags/$(version).tar.gz",
+             "https://github.com/YaaZ/VulkanMemoryAllocator-Hpp.git")
+    add_versions("v3.0.0", '2f062b1631af64519d09e7b319c2ba06d7de3c9c5589fb7109a3f4e341cee2b7')
+    add_versions("v3.0.1", '58aef30d992fea986a8ab3bf3b4c5ffece3679fb585af5700269b3d627bc6760')
+
+    add_deps("vulkan-hpp")
+    add_deps("vulkan-memory-allocator")
+
+    on_install("windows|x86", "windows|x64", "linux", "macosx", "mingw", function (package)
+        os.cp("include", package:installdir())
+    end)
+
+    on_test(function (package)
+        assert(package:check_cxxsnippets({test = [[
+            void test() {
+                int version = VMA_VULKAN_VERSION;
+            }
+        ]]}, {includes = "vk_mem_alloc.hpp", configs = {languages = "c++11"} }))
+    end)