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.
26 lines
1.0 KiB
26 lines
1.0 KiB
4 years ago
|
package("glad")
|
||
|
|
||
|
set_homepage("https://glad.dav1d.de/")
|
||
|
set_description("Multi-Language Vulkan/GL/GLES/EGL/GLX/WGL Loader-Generator based on the official specs.")
|
||
|
set_license("MIT")
|
||
|
|
||
|
add_urls("https://github.com/Dav1dde/glad/archive/$(version).tar.gz",
|
||
|
"https://github.com/Dav1dde/glad.git")
|
||
|
add_versions("v0.1.34", "4be2900ff76ac71a2aab7a8be301eb4c0338491c7e205693435b09aad4969ecd")
|
||
|
|
||
|
add_deps("cmake", "python 3.x", {kind = "binary"})
|
||
|
if is_plat("linux") then
|
||
|
add_syslinks("dl")
|
||
|
end
|
||
|
on_install("windows", "linux", "macosx", function (package)
|
||
|
local configs = {"-DGLAD_INSTALL=ON", "-DGLAD_REPRODUCIBLE=ON"}
|
||
|
if package:is_plat("windows") then
|
||
|
table.insert(configs, "-DUSE_MSVC_RUNTIME_LIBRARY_DLL=" .. (package:config("vs_runtime"):startswith("MT") and "OFF" or "ON"))
|
||
|
end
|
||
|
import("package.tools.cmake").install(package, configs)
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
assert(package:has_cfuncs("gladLoadGL", {includes = "glad/glad.h"}))
|
||
|
end)
|