瀏覽代碼

centurion: add package (#4953)

* centurion: add package

* limit wasm

---------

Co-authored-by: star9029 <[email protected]>
ilobilo 1 年之前
父節點
當前提交
5472630a06
共有 1 個文件被更改,包括 113 次插入0 次删除
  1. 113 0
      packages/c/centurion/xmake.lua

+ 113 - 0
packages/c/centurion/xmake.lua

@@ -0,0 +1,113 @@
+package("centurion")
+    set_kind("library", { headeronly = true })
+    set_homepage("https://github.com/albin-johansson/centurion")
+    set_description("A modern C++ wrapper library for SDL2 in order to improve type-safety, memory safety and overall ease-of-use.")
+    set_license("MIT")
+
+    set_urls("https://github.com/albin-johansson/centurion/archive/refs/tags/$(version).tar.gz",
+             "https://github.com/albin-johansson/centurion.git")
+
+    add_versions("v7.3.0", "ad8b7c27074939fa46380a878e82c2b0365d1c4ad31b4a71bfcd5ce3ac0198e6")
+
+    add_configs("pragma_once", { description = "Use #pragma once in centurion.hpp", default = true, type = "boolean" })
+    add_configs("debug_macros", { description = "Include debug-only logging macros, such as CENTURION_LOG_INFO", default = true, type = "boolean" })
+
+    add_configs("sdl_image", { description = "Enable library components that rely on the SDL_image library", default = true, type = "boolean" })
+    add_configs("sdl_mixer", { description = "Enable library components that rely on the SDL_mixer library", default = true, type = "boolean" })
+    add_configs("sdl_ttf", { description = "Enable library components that rely on the SDL_ttf library", default = true, type = "boolean" })
+
+    add_configs("vulkan", { description = "Enable library components related to Vulkan", default = true, type = "boolean" })
+    add_configs("opengl", { description = "Enable library components related to OpenGL", default = true, type = "boolean" })
+
+    if is_plat("wasm") then
+        add_configs("shared", { description = "Build shared library.", default = false, type = "boolean", readonly = true })
+    end
+
+    add_includedirs("include", "include/SDL2")
+
+    on_load(function (package)
+        if package:config("shared") then
+            package:add("deps", "libsdl", { configs = { shared = true } })
+        else
+            package:add("deps", "libsdl")
+        end
+
+        if not package:config("pragma_once") then
+            package:add("defines", "CENTURION_NO_PRAGMA_ONCE")
+        end
+        if not package:config("debug_macros") then
+            package:add("defines", "CENTURION_NO_DEBUG_LOG_MACROS")
+        end
+
+        if package:config("sdl_image") then
+            if package:config("shared") then
+                package:add("deps", "libsdl_image", { configs = { shared = true } })
+            else
+                package:add("deps", "libsdl_image")
+            end
+        else
+            package:add("defines", "CENTURION_NO_SDL_IMAGE")
+        end
+        if package:config("sdl_mixer") then
+            if package:config("shared") then
+                package:add("deps", "libsdl_mixer", { configs = { shared = true } })
+            else
+                package:add("deps", "libsdl_mixer")
+            end
+        else
+            package:add("defines", "CENTURION_NO_SDL_MIXER")
+        end
+        if package:config("sdl_ttf") then
+            if package:config("shared") then
+                package:add("deps", "libsdl_ttf", { configs = { shared = true } })
+            else
+                package:add("deps", "libsdl_ttf")
+            end
+        else
+            package:add("defines", "CENTURION_NO_SDL_TTF")
+        end
+
+        if not package:config("vulkan") then
+            package:add("defines", "CENTURION_NO_VULKAN")
+        end
+        if not package:config("opengl") then
+            package:add("defines", "CENTURION_NO_OPENGL")
+        end
+    end)
+
+    on_install("!wasm", function (package)
+        os.cp("src/*", package:installdir("include"))
+    end)
+
+    on_test(function (package)
+        assert(package:check_cxxsnippets({ test = [[
+            int main() {
+                const cen::sdl sdl;
+                cen::window window { "Centurion" };
+                cen::renderer renderer = window.make_renderer();
+                window.show();
+                window.hide();
+            }
+        ]] }, { configs = { languages = "c++17", defines = "SDL_MAIN_HANDLED" }, includes = "centurion.hpp" }))
+        if package:config("sdl_image") then
+            assert(package:check_cxxsnippets({ test = [[
+                int main() {
+                    const cen::img img;
+                }
+            ]] }, { configs = { languages = "c++17", defines = "SDL_MAIN_HANDLED" }, includes = "centurion.hpp" }))
+        end
+        if package:config("sdl_mixer") then
+            assert(package:check_cxxsnippets({ test = [[
+                int main() {
+                    const cen::mix mix;
+                }
+            ]] }, { configs = { languages = "c++17", defines = "SDL_MAIN_HANDLED" }, includes = "centurion.hpp" }))
+        end
+        if package:config("sdl_ttf") then
+            assert(package:check_cxxsnippets({ test = [[
+                int main() {
+                    const cen::ttf ttf;
+                }
+            ]] }, { configs = { languages = "c++17", defines = "SDL_MAIN_HANDLED" }, includes = "centurion.hpp" }))
+        end
+    end)