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.4 KiB
34 lines
1.4 KiB
1 year ago
|
package("daw_json_link")
|
||
|
set_kind("library", {headeronly = true})
|
||
|
set_homepage("https://beached.github.io/daw_json_link/")
|
||
|
set_description("Fast, convenient JSON serialization and parsing in C++")
|
||
|
set_license("BSL-1.0")
|
||
|
|
||
|
add_urls("https://github.com/beached/daw_json_link/archive/refs/tags/$(version).tar.gz",
|
||
|
"https://github.com/beached/daw_json_link.git")
|
||
|
|
||
|
add_versions("v3.20.1", "046638bc4437d138cc8bdc882027d318ca3e267f33d1b419c5bdecb45b595a47")
|
||
|
|
||
|
add_deps("cmake")
|
||
|
|
||
|
on_install("windows", "linux", "macosx", "bsd", "mingw", "msys", "android", "iphoneos", "cross", function (package)
|
||
|
if package:is_plat("android") then
|
||
|
import("core.tool.toolchain")
|
||
|
local ndk = toolchain.load("ndk", {plat = package:plat(), arch = package:arch()})
|
||
|
local ndk_sdkver = ndk:config("ndk_sdkver")
|
||
|
assert(ndk_sdkver and tonumber(ndk_sdkver) > 21, "package(daw_json_link): need ndk api level > 21 for android")
|
||
|
end
|
||
|
import("package.tools.cmake").install(package, configs)
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
assert(package:check_cxxsnippets({test = [[
|
||
|
#include <string>
|
||
|
#include <daw/json/daw_json_link.h>
|
||
|
void test() {
|
||
|
std::string json_data = "[1, 2, 3, 4, 5]";
|
||
|
auto const obj = daw::json::from_json_array<int>(json_data);
|
||
|
}
|
||
|
]]}, {configs = {languages = "c++17"}}))
|
||
|
end)
|