浏览代码

cute_headers: add package (#4777)

KaoruXun 1 年之前
父节点
当前提交
47a8bc3e7f
共有 1 个文件被更改,包括 17 次插入0 次删除
  1. 17 0
      packages/c/cute_headers/xmake.lua

+ 17 - 0
packages/c/cute_headers/xmake.lua

@@ -0,0 +1,17 @@
+package("cute_headers")
+
+    set_kind("library", {headeronly = true})
+    set_homepage("https://github.com/RandyGaul/cute_headers")
+    set_description("Collection of cross-platform one-file C/C++ libraries with no dependencies, primarily used for games")
+    set_license("Public Domain")
+
+    add_urls("https://github.com/RandyGaul/cute_headers.git")
+    add_versions("2024.07.22", "cab36d7c6690e334720e705bd6cd3ce29b0b0844")
+
+    on_install(function (package)
+        os.cp("*.h", package:installdir("include"))
+    end)
+
+    on_test(function (package)
+        assert(package:has_cfuncs("cute_aseprite_load_from_file", {includes = "cute_aseprite.h", defines = "CUTE_ASEPRITE_IMPLEMENTATION"}))
+    end)