浏览代码

Update inja v3.4.0 (#1977)

* fix: inja build error

* feat: add inja version 3.4.0

* fix: install from master

* Update xmake.lua

* Update xmake.lua

---------

Co-authored-by: ruki <[email protected]>
Mogg 2 年之前
父节点
当前提交
d3dee0567b
共有 1 个文件被更改,包括 6 次插入1 次删除
  1. 6 1
      packages/i/inja/xmake.lua

+ 6 - 1
packages/i/inja/xmake.lua

@@ -7,6 +7,7 @@ package("inja")
              "https://github.com/pantor/inja.git")
 
     add_versions("v2.1.0", "038ecde8f6dbad5d3cedb6ceb0853fd0e488d5dc57593a869633ecb30b0dfa6e")
+    add_versions("v3.4.0", "7155f944553ca6064b26e88e6cae8b71f8be764832c9c7c6d5998e0d5fd60c55")
 
     add_deps("nlohmann_json")
 
@@ -15,6 +16,10 @@ package("inja")
     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;
@@ -24,5 +29,5 @@ package("inja")
                 data["name"] = "world";
                 env.render("Hello {{ name }}!", data);
             }
-        ]]}, {configs = {languages = "c++11"}, includes = {"inja/inja.hpp"}}))
+        ]]}, {configs = {languages = cxx_std}, includes = {"inja/inja.hpp"}}))
     end)