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.
 
 
 

24 lines
907 B

package("maddy")
set_kind("library", {headeronly = true})
set_homepage("https://github.com/progsource/maddy")
set_description("C++ Markdown to HTML header-only parser library")
set_license("MIT")
add_urls("https://github.com/progsource/maddy/archive/refs/tags/$(version).tar.gz",
"https://github.com/progsource/maddy.git")
add_versions("1.3.0", "561681f8c8d2b998c153cda734107a0bc1dea4bb0df69fd813922da63fa9f3e7")
add_versions("1.2.1", "b6058bce7ca32506969633ee7a4042e75b07464489f1c44be00913543cd687ef")
on_install(function (package)
os.cp("include", package:installdir())
end)
on_test(function (package)
assert(package:check_cxxsnippets({test = [[
#include <maddy/parser.h>
void test() {
auto var = maddy::ParserConfig();
}
]]}, {configs = {languages = "c++14"}}))
end)