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.
34 lines
1.5 KiB
34 lines
1.5 KiB
package("rsm-binary-io") |
|
set_homepage("https://github.com/Ryan-rsm-McKenzie/binary_io") |
|
set_description("A binary i/o library for C++, without the agonizing pain") |
|
set_license("MIT") |
|
|
|
add_urls("https://github.com/Ryan-rsm-McKenzie/binary_io/archive/refs/tags/$(version).tar.gz", |
|
"https://github.com/Ryan-rsm-McKenzie/binary_io.git") |
|
add_versions("2.0.5", "4cc904ef02f77e04756cbdf01372629b0f04d859f06ee088d854468abdd4b840") |
|
add_versions("2.0.6", "88354a25064f3da58bdcb24049ca23d7d8f4fb3e12496f397937a65d1943f114") |
|
|
|
on_install("windows", "linux", "macosx", "iphoneos", "android", "bsd", "wasm", "cross", function (package) |
|
io.writefile("xmake.lua", [[ |
|
add_rules("mode.debug", "mode.release") |
|
set_languages("c++20") |
|
target("rsm-binary-io") |
|
set_kind("$(kind)") |
|
add_files("src/**.cpp") |
|
add_includedirs("include/") |
|
add_headerfiles("include/(**.hpp)") |
|
if is_plat("windows") and is_kind("shared") then |
|
add_rules("utils.symbols.export_all", {export_classes = true}) |
|
end |
|
]]) |
|
import("package.tools.xmake").install(package) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:check_cxxsnippets({test = [[ |
|
void test() { |
|
binary_io::span_istream s; |
|
assert(s.tell() == 0); |
|
} |
|
]]}, {configs = {languages = "c++20"}, includes = {"binary_io/binary_io.hpp", "assert.h"}})) |
|
end)
|
|
|