* update glm

* make header only default
pull/3209/head
Hoildkv 10 months ago committed by GitHub
parent e28f1262fa
commit a047d98b78
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 30
      packages/g/glm/xmake.lua

@ -2,21 +2,43 @@ package("glm")
set_homepage("https://glm.g-truc.net/")
set_description("OpenGL Mathematics (GLM)")
set_license("MIT")
set_urls("https://github.com/g-truc/glm/archive/$(version).tar.gz",
add_urls("https://github.com/g-truc/glm/archive/refs/tags/$(version).tar.gz",
{version = function(version) return version:gsub("%+", ".") end})
add_urls("https://github.com/g-truc/glm.git")
add_versions("1.0.0", "e51f6c89ff33b7cfb19daafb215f293d106cd900f8d681b9b1295312ccadbd23")
add_versions("0.9.9+8", "7d508ab72cb5d43227a3711420f06ff99b0a0cb63ee2f93631b162bfe1fe9592")
add_configs("header_only", {description = "Use header only version.", default = true, type = "boolean"})
add_configs("cxx_standard", {description = "Select c++ standard to build.", default = "14", type = "string", values = {"98", "11", "14", "17", "20"}})
on_load(function (package)
if not package:config("header_only") then
package:add("deps", "cmake")
end
end)
on_install(function (package)
os.cp("glm", package:installdir("include"))
os.cp("cmake", package:installdir("lib"))
if package:config("header_only") then
os.cp("glm", package:installdir("include"))
else
io.replace("CMakeLists.txt", "NOT GLM_DISABLE_AUTO_DETECTION", "FALSE")
local configs = {"-DGLM_BUILD_TESTS=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"))
table.insert(configs, "-DCMAKE_CXX_STANDARD=" .. package:config("cxx_standard"))
import("package.tools.cmake").install(package, configs)
end
end)
on_test(function (package)
local cxx_standard = "c++" .. package:config("cxx_standard")
assert(package:check_cxxsnippets({test = [[
#include <glm/glm.hpp>
#include <glm/ext/matrix_clip_space.hpp>
void test() {
glm::mat4 proj = glm::perspective(glm::radians(45.f), 1.33f, 0.1f, 10.f);
}
]]}, {configs = {languages = "c++14"}, includes = {"glm/mat4x4.hpp", "glm/ext/matrix_clip_space.hpp"}}))
]]}, {configs = {languages = cxx_standard}}))
end)

Loading…
Cancel
Save