b6de33d5创建于 2025年3月21日历史提交
package("sokol")

    set_kind("library", {headeronly = true})
    set_homepage("https://github.com/floooh/sokol")
    set_description("Simple STB-style cross-platform libraries for C and C++, written in C.")
    set_license("zlib")

    add_urls("https://github.com/floooh/sokol.git")
    add_versions("2022.02.10", "e8931e4399a0eb4bf026120d7bdb89825815af9e")
    add_versions("2023.01.27", "dc6814bdecd277366a650b6b0b744b52bb9131e5")
    add_versions("2024.07.10", "7b20c1936229370277d1c61bde950bce194de584")
    add_versions("2024.12.08", "a94f66a4823cabe63374c93c502331e83642b70f")
    add_versions("2025.03.20", "5c97c9ad38210b87581ac333ba060ab51d17c35e")

    on_install(function (package)
        os.cp("*.h", package:installdir("include"))
        os.cp("util/*.h", package:installdir("include", "util"))
    end)

    on_test(function (package)
        assert(package:has_cfuncs("sargs_setup", {includes = "sokol_args.h", defines = "SOKOL_IMPL"}))
    end)