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.
50 lines
1.9 KiB
50 lines
1.9 KiB
package("rsm-bsa") |
|
set_homepage("https://github.com/Ryan-rsm-McKenzie/bsa") |
|
set_description("C++ library for working with the Bethesda archive file format") |
|
set_license("MIT") |
|
|
|
add_urls("https://github.com/Ryan-rsm-McKenzie/bsa/archive/refs/tags/$(version).tar.gz", |
|
"https://github.com/Ryan-rsm-McKenzie/bsa.git") |
|
|
|
add_versions("4.1.0", "c2942eb1adc35114a256720a917cfae833aa98482da3b38f9d652762d1c281b2") |
|
|
|
add_configs("xmem", {description = "build support for the xmem codec proxy", default = false, type = "boolean", readonly = true}) |
|
|
|
add_deps("rsm-mmio", "rsm-binary-io", "lz4", "zlib") |
|
if is_plat("windows", "linux") then |
|
add_deps("directxtex") |
|
if is_plat("windows") then |
|
add_syslinks("ole32") |
|
end |
|
end |
|
|
|
on_load(function (package) |
|
if package:config("xmem") then |
|
package:add("defines", "BSA_SUPPORT_XMEM=1") |
|
package:add("deps", "reproc", "expected-lite", "xbyak") |
|
package:add("deps", "rsm-mmio~32", "rsm-binary-io~32") |
|
package:add("deps", "expected-lite~32", "xbyak~32", "taywee_args~32") |
|
end |
|
end) |
|
|
|
on_install("windows", "linux", function (package) |
|
os.cp(path.join(os.scriptdir(), "port", "xmake.lua"), "xmake.lua") |
|
|
|
local configs = {} |
|
configs.ver = package:version_str() |
|
if package:config("xmem") then |
|
configs.xmem = true |
|
end |
|
import("package.tools.xmake").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:check_cxxsnippets({test = [[ |
|
#include <bsa/tes4.hpp> |
|
void test() { |
|
const char payload[] = { "Hello world!\n" }; |
|
bsa::tes4::file f; |
|
f.set_data({ reinterpret_cast<const std::byte*>(payload), sizeof(payload) - 1 }); |
|
} |
|
]]}, {configs = {languages = "c++20"}})) |
|
end)
|
|
|