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.
 
 
 

54 lines
2.8 KiB

package("polyscope")
set_homepage("https://polyscope.run/")
set_description("A C++ & Python viewer for 3D data like meshes and point clouds")
set_license("MIT")
add_urls("https://github.com/nmwsharp/polyscope/archive/refs/tags/$(version).tar.gz",
"https://github.com/nmwsharp/polyscope.git")
add_versions("v2.3", "2f57d6d206aa69d277858f046f4db08d27f03c10e97d691a0c3fc9e221a0cd60")
add_versions("v2.2.1", "1952d20722cb37c5531e88d5b7f5db88c2827c55fd7ada481c2ac425f3bc4d25")
add_versions("v2.1.0", "bdad2daab33a44b3b6424cec82b43cecb842b529769fd0df3bf7d8e616cea34c")
add_versions("v1.3.0", "c0d3594b1c818c6e7efe2c2589d71f5e254db383d36a92555aa909a2114f12d4")
add_patches(">=2.2.1", "patches/v2.2.1/deps.patch", "7183fac6dcb6ebc9441c02e4c5f51721ab2a64fe524488611e6085e5b72bb6ae")
add_patches("2.1.0", "patches/v2.1.0/deps.patch", "01bc0b31193e65b8cc079d9f232f73fb995b3cfd276840add58a01dfcf477cc8")
add_patches("1.3.0", "patches/v1.3.0/deps.patch", "2d183713be791deddcfb48e4546793f584071eb1aa7a045e03c7ceed841470c8")
add_patches("1.3.0", "patches/v1.3.0/imgui.patch", "e7865d6de85103098cdc25ab8a0e94dd26fb5f718609f20093b91891cc8f21e1")
if is_plat("windows") then
add_configs("shared", {description = "Build shared library.", default = false, type = "boolean", readonly = true})
end
add_deps("cmake")
add_deps("glad", "glfw", "glm", "nlohmann_json", "stb")
on_load("windows", "macosx", "linux", function (package)
if package:version():ge("2.2.0") then
package:add("deps", "imgui", {configs = {glfw = true, opengl3 = true}})
else
package:add("deps", "happly")
package:add("deps", "imgui <=1.86", {configs = {glfw = true, opengl3 = true}})
end
package:add("defines", "GLM_ENABLE_EXPERIMENTAL")
end)
on_install("windows", "macosx", "linux", function (package)
os.cp("deps/stb/stb_impl.cpp", "deps/stb_impl.cpp")
local configs = {"-DPOLYSCOPE_BACKEND_OPENGL_MOCK=OFF", "-DPOLYSCOPE_BACKEND_OPENGL3_EGL=OFF"}
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
import("package.tools.cmake").install(package, configs, {packagedeps = {"imgui", "glad", "glfw", "glm", "happly", "nlohmann_json", "stb"}})
if package:version():lt("2.2.0") then
os.cp("include/polyscope", package:installdir("include"))
end
end)
on_test(function (package)
assert(package:check_cxxsnippets({test = [[
#include <polyscope/polyscope.h>
void test() {
polyscope::init();
polyscope::show();
}
]]}, {configs = {languages = "c++17"}}))
end)