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.
19 lines
626 B
19 lines
626 B
package("jsmn") |
|
|
|
set_kind("library", {headeronly = true}) |
|
set_homepage("https://github.com/zserge/jsmn") |
|
set_description("Jsmn is a world fastest JSON parser/tokenizer") |
|
|
|
set_urls("https://github.com/zserge/jsmn/archive/refs/tags/$(version).tar.gz", |
|
"https://github.com/zserge/jsmn.git") |
|
|
|
add_versions("v1.1.0", "5f0913a10657fe7ec8d5794ccf00a01000e3e1f2f1e1f143c34a0f7b47edcb38") |
|
|
|
on_install(function (package) |
|
os.cp("jsmn.h", package:installdir("include")) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cfuncs("jsmn_parse", {includes = "jsmn.h"})) |
|
end) |
|
|
|
|