浏览代码

update imguizmo (#5559)

* update imguizmo

* use lower case

* add restrict to imgui version

* specify max version
Inari0 10 月之前
父节点
当前提交
44bbf1dad6
共有 1 个文件被更改,包括 31 次插入25 次删除
  1. 31 25
      packages/i/imguizmo/xmake.lua

+ 31 - 25
packages/i/imguizmo/xmake.lua

@@ -2,35 +2,42 @@ package("imguizmo")
 
     set_homepage("https://github.com/CedricGuillemet/ImGuizmo")
     set_description("Immediate mode 3D gizmo for scene editing and other controls based on Dear Imgui")
+    set_license("MIT")
 
     add_urls("https://github.com/CedricGuillemet/ImGuizmo.git")
     add_versions("1.83", "664cf2d73864a36b2a8b5091d33fc4578c885eca")
-    add_versions("1.89+WIP", "82e2465b8d029e2d85002905cc4ed5087e2119fe")
-
-
-    add_deps("imgui")
+    add_versions("1.89+wip", "82e2465b8d029e2d85002905cc4ed5087e2119fe")
+    add_versions("1.91.3+wip", "bcdd86bb8a8019b373e46921c52ef7f2fdaa8b16")
+
+    on_load(function (package)
+        if package:version():lt("1.90") then
+            package:add("deps", "imgui <=1.89.3")
+        else
+            package:add("deps", "imgui")
+        end
+    end)
 
     on_install("macosx", "linux", "windows", "mingw", "android", "iphoneos", function (package)
-            local imgui = package:dep("imgui")
-            local configs = imgui:requireinfo().configs
-            if configs then
-                configs = string.serialize(configs, {strip = true, indent = false})
-            end
-            local xmake_lua = ([[
-                add_rules("mode.debug", "mode.release")
-                set_languages("c++14")
-
-                add_requires("imgui %s", {configs = %s})
-
-                target("imguizmo")
-                    set_kind("static")
-                    add_files("*.cpp")
-                    add_headerfiles("*.h")
-                    add_packages("imgui")
-            ]]):format(imgui:version_str(), configs)
-            io.writefile("xmake.lua", xmake_lua)
-            import("package.tools.xmake").install(package)
-        end)
+        local imgui = package:dep("imgui")
+        local configs = imgui:requireinfo().configs
+        if configs then
+            configs = string.serialize(configs, {strip = true, indent = false})
+        end
+        local xmake_lua = ([[
+            add_rules("mode.debug", "mode.release")
+            set_languages("c++14")
+
+            add_requires("imgui %s", {configs = %s})
+
+            target("imguizmo")
+                set_kind("static")
+                add_files("*.cpp")
+                add_headerfiles("*.h")
+                add_packages("imgui")
+        ]]):format(imgui:version_str(), configs)
+        io.writefile("xmake.lua", xmake_lua)
+        import("package.tools.xmake").install(package)
+    end)
 
     on_test(function (package)
         assert(package:check_cxxsnippets({test = [[
@@ -40,4 +47,3 @@ package("imguizmo")
             }
         ]]}, {configs = {languages = "c++11"}, includes = {"imgui.h", "ImGuizmo.h"}}))
     end)
-