-
-
Notifications
You must be signed in to change notification settings - Fork 403
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* daw_json_link: add package * disable plat
- Loading branch information
1 parent
f56d1aa
commit c816943
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
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) |