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.
25 lines
981 B
25 lines
981 B
package("nuklear") |
|
|
|
set_kind("library", {headeronly = true}) |
|
set_homepage("https://immediate-mode-ui.github.io/Nuklear/doc/index.html") |
|
set_description("A single-header ANSI C immediate mode cross-platform GUI library") |
|
set_license("MIT") |
|
|
|
add_urls("https://github.com/Immediate-Mode-UI/Nuklear/archive/refs/tags/$(version).tar.gz", |
|
"https://github.com/Immediate-Mode-UI/Nuklear.git") |
|
|
|
add_versions("4.12.0", "4cb80084d20d20561548a2941b6d1eb7c30e6f0b9405e0d5df84bae3c1d7bbaf") |
|
add_versions("4.10.5", "6c80cbd0612447421fa02ad92f4207da2cd019a14d94885dfccac1aadc57926a") |
|
|
|
on_load("mingw", function (package) |
|
-- see https://github.com/Immediate-Mode-UI/Nuklear/issues/320 |
|
package:add("defines", "NK_INCLUDE_FIXED_TYPES") |
|
end) |
|
|
|
on_install(function (package) |
|
os.cp("nuklear.h", package:installdir("include")) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cincludes("nuklear.h")) |
|
end)
|
|
|