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.
31 lines
1.2 KiB
31 lines
1.2 KiB
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") |
|
|
|
add_urls("https://github.com/CedricGuillemet/ImGuizmo.git") |
|
add_versions("1.83", "14a91c16e40b585fd96314826fa6d506311dbe5c") |
|
|
|
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)
|
|
|