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.
49 lines
2.8 KiB
49 lines
2.8 KiB
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_versions("v0.1.36", "8470ed1b0e9fbe88e10c34770505c8a1dc8ccb78cadcf673331aaf5224f963d2") |
|
|
|
add_patches("0.1.36", "https://github.com/Dav1dde/glad/commit/59797224a66efc354da07d135fcf4b752b20d787.patch", "09cc8ca403fdf2f2d170c18174bae0a1a6cc7d045b25aecd9cb1dc3ecae0aa2c") |
|
|
|
if is_plat("linux") then |
|
add_syslinks("dl") |
|
end |
|
on_load("windows", "linux", "macosx", "mingw", function (package) |
|
if not package.is_built or package:is_built() then |
|
package:add("deps", "cmake") |
|
package:add("deps", "python 3.x", {kind = "binary"}) |
|
end |
|
end) |
|
|
|
add_configs("reproducible", {description = "Disable fetching the latest specification from Khronos", default = true, type = "boolean"}) |
|
add_configs("profile", {description = "OpenGL profile", default = "compatibility", type = "string", values = {"core", "compatibility"}}) |
|
add_configs("api", {description = "OpenGL API", default = "", type = "string"}) |
|
add_configs("extensions", {description = "OpenGL extensions", default = "", type = "string"}) |
|
add_configs("generator", {description = "Generator", default = "c", type = "string", values = {"c", "c-debug", "d", "nim", "pascal", "volt"}}) |
|
add_configs("spec", {description = "OpenGL spec", default = "gl", type = "string"}) |
|
|
|
on_install("windows", "linux", "macosx", "mingw", function (package) |
|
local configs = {"-DGLAD_INSTALL=ON"} |
|
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, "-DGLAD_REPRODUCIBLE=" .. (package:config("reproducible") and "ON" or "OFF")) |
|
table.insert(configs, "-DGLAD_PROFILE=" .. package:config("profile")) |
|
table.insert(configs, "-DGLAD_API=" .. package:config("api")) |
|
table.insert(configs, "-DGLAD_EXTENSIONS=" .. package:config("extensions")) |
|
table.insert(configs, "-DGLAD_GENERATOR=" .. package:config("generator")) |
|
table.insert(configs, "-DGLAD_SPEC=" .. package:config("spec")) |
|
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)
|
|
|