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.
23 lines
716 B
23 lines
716 B
2 years ago
|
package("managedc")
|
||
|
set_kind("library", { headeronly = true })
|
||
|
set_description("Reference counter garabage collection for C")
|
||
|
|
||
|
add_urls("https://github.com/Frityet/ManagedC.git")
|
||
|
add_versions("1.5.0", "f4cce9c1aee952d603c18b73dc6219ea15b91717")
|
||
|
|
||
|
on_install("linux", "macosx", function (package)
|
||
|
os.cp("src/*.h", package:installdir("include"))
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
assert(package:check_csnippets({test = [[
|
||
|
#include <stdio.h>
|
||
|
void test() {
|
||
|
void* data = mc_alloc_managed(0, 0, 0);
|
||
|
printf("data: %p\n", data);
|
||
|
}
|
||
|
]]}, {configs = {languages = "c11"}, includes = "managed.h"}))
|
||
|
end)
|
||
|
|
||
|
|