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.
 
 
 

27 lines
1.2 KiB

package("pegtl")
set_kind("library", {headeronly = true})
set_homepage("https://github.com/taocpp/PEGTL")
set_description("Parsing Expression Grammar Template Library")
set_license("BSL-1.0")
add_urls("https://github.com/taocpp/PEGTL/archive/refs/tags/$(version).tar.gz",
"https://github.com/taocpp/PEGTL.git")
add_versions("3.2.7", "d6cd113d8bd14e98bcbe7b7f8fc1e1e33448dc359e8cd4cca30e034ec2f0642d")
add_versions("3.2.2", "c6616275e78c618c016b79054eed0a0bdf4c1934f830d3ab33d3c3dac7320b03")
add_versions("3.2.5", "4ecefe4151b14684a944dde57e68c98e00224e5fea055c263e1bfbed24a99827")
add_deps("cmake")
on_install("windows", "macosx", "linux", "mingw", function (package)
import("package.tools.cmake").install(package, {"-DPEGTL_BUILD_TESTS=OFF", "-DPEGTL_BUILD_EXAMPLES=OFF"})
end)
on_test(function (package)
assert(package:check_cxxsnippets({test = [[
#include <tao/pegtl.hpp>
namespace pegtl = TAO_PEGTL_NAMESPACE;
void test(int argc, char *argv[]) {
pegtl::argv_input in(argv, 1);
}
]]}, {configs = {languages = "c++17"}}))
end)