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.
22 lines
875 B
22 lines
875 B
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)
|
|
|