Skip to content

Commit

Permalink
update imguizmo
Browse files Browse the repository at this point in the history
  • Loading branch information
xq114 authored Oct 22, 2024
1 parent cbcad8f commit dd08ad1
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions packages/i/imguizmo/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,35 +2,36 @@ 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_versions("1.91.3+WIP", "bcdd86bb8a8019b373e46921c52ef7f2fdaa8b16")

add_deps("imgui")

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 = [[
Expand All @@ -40,4 +41,3 @@ package("imguizmo")
}
]]}, {configs = {languages = "c++11"}, includes = {"imgui.h", "ImGuizmo.h"}}))
end)

0 comments on commit dd08ad1

Please sign in to comment.