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.
19 lines
702 B
19 lines
702 B
package("qoi") |
|
|
|
set_kind("library", {headeronly = true}) |
|
set_homepage("https://qoiformat.org/") |
|
set_description("The Quite OK Image Format for fast, lossless image compression") |
|
set_license("MIT") |
|
|
|
add_urls("https://github.com/phoboslab/qoi.git") |
|
add_versions("2021.12.22", "44fe081388c60e7618f49486865b992e08ce4de4") |
|
add_versions("2022.11.17", "660839cb2c51d6b5f62221f8ef98662fd40e42d2") |
|
add_versions("2024.03.18", "bf7b41c2ff3f24a2031193b62aa76d35e8842b5a") |
|
|
|
on_install(function (package) |
|
os.cp("qoi.h", package:installdir("include")) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cfuncs("qoi_encode", {includes = "qoi.h"})) |
|
end)
|
|
|