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.
33 lines
1.1 KiB
33 lines
1.1 KiB
package("inja") |
|
|
|
set_homepage("https://pantor.github.io/inja/") |
|
set_description("A Template Engine for Modern C++") |
|
|
|
add_urls("https://github.com/pantor/inja/archive/$(version).tar.gz", |
|
"https://github.com/pantor/inja.git") |
|
|
|
add_versions("v2.1.0", "038ecde8f6dbad5d3cedb6ceb0853fd0e488d5dc57593a869633ecb30b0dfa6e") |
|
add_versions("v3.4.0", "7155f944553ca6064b26e88e6cae8b71f8be764832c9c7c6d5998e0d5fd60c55") |
|
|
|
add_deps("nlohmann_json") |
|
|
|
on_install(function (package) |
|
os.cp("single_include/inja", package:installdir("include")) |
|
end) |
|
|
|
on_test(function (package) |
|
local cxx_std = "c++17" |
|
if package:version() and package:version():lt("3.4.0") then |
|
cxx_std = "c++11" |
|
end |
|
assert(package:check_cxxsnippets({test = [[ |
|
using namespace inja; |
|
using json = nlohmann::json; |
|
void test() { |
|
inja::Environment env; |
|
json data; |
|
data["name"] = "world"; |
|
env.render("Hello {{ name }}!", data); |
|
} |
|
]]}, {configs = {languages = cxx_std}, includes = {"inja/inja.hpp"}})) |
|
end)
|
|
|