1234567891011121314151617181920212223242526272829303132333435363738394041 |
- package("msgpack23")
- set_kind("library", {headeronly = true})
- set_homepage("https://github.com/rwindegger/msgpack23")
- set_description("A modern, header-only C++ library for MessagePack serialization and deserialization. msgpack.org[c++23]")
- set_license("MIT")
- add_urls("https://github.com/rwindegger/msgpack23/archive/refs/tags/$(version).tar.gz",
- "https://github.com/rwindegger/msgpack23.git")
- add_versions("v2.1", "9ce1e294518aa76cac50f778a359aed17a0daa0d8dc4c1f94cd4f12438b3606c")
- add_deps("cmake")
- on_check(function (package)
- assert(package:check_cxxsnippets({test = [[
- #include <utility>
- enum class Color : char {
- red
- };
- void test() {
- std::to_underlying(Color::red);
- }
- ]]}, {configs = {languages = "c++23"}}), "package(msgpack23) require c++23")
- end)
- on_install(function (package)
- local configs = {"-DBUILD_TESTING=OFF"}
- table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
- import("package.tools.cmake").install(package, configs)
- io.replace(path.join(package:installdir("include/msgpack23"), "msgpack23.h"),
- "#include <cstring>", "#include <cstring>\n#include <utility>", {plain = true})
- end)
- on_test(function (package)
- assert(package:check_cxxsnippets({test = [[
- void test() {
- msgpack23::Packer packer;
- }
- ]]}, {configs = {languages = "c++23"}, includes = "msgpack23/msgpack23.h"}))
- end)
|