add commata packages (#4569)
* add commata packages * impoove the script of commata * add license and change the way of os.cp writing * add commit url * Update xmake.lua --------- Co-authored-by: benny WU <benny066567@163.com> Co-authored-by: ruki <waruqi@gmail.com>pull/4573/head
parent
cbd315bec5
commit
4eff67fba4
1 changed files with 22 additions and 0 deletions
@ -0,0 +1,22 @@ |
||||
package("commata") |
||||
set_kind("library", {headeronly = true}) |
||||
set_homepage("https://furfurylic.github.io/commata/CommataSpecification.xml") |
||||
set_description("Just another header-only C++17 CSV parser") |
||||
set_license("Unlicense") |
||||
|
||||
add_urls("https://github.com/furfurylic/commata/archive/refs/tags/$(version)-rc.2.zip", |
||||
"https://github.com/furfurylic/commata.git") |
||||
add_versions("v1.0.0", "5f9ef542d10d5d04d296e609ae8931e09a157761c86630d71b2f397c6a205a75") |
||||
|
||||
on_install(function (package) |
||||
os.cp("include", package:installdir()) |
||||
end) |
||||
|
||||
on_test(function (package) |
||||
assert(package:check_cxxsnippets({test = [[ |
||||
using commata::stored_table; |
||||
void test() { |
||||
stored_table table; |
||||
} |
||||
]]}, {configs = {languages = "c++17"}, includes = "commata/stored_table.hpp"})) |
||||
end) |
Loading…
Reference in new issue