pull/45/head
ruki 5 years ago
parent a7b54b5632
commit cd817aa49d
No known key found for this signature in database
GPG Key ID: 809EF06AD42725BD
  1. 21
      packages/c/co/xmake.lua

@ -0,0 +1,21 @@
package("co")
set_homepage("https://github.com/idealvin/co")
set_description("Yet another libco and more.")
add_urls("https://github.com/idealvin/co.git")
on_install("macosx", "linux", "windows", function (package)
import("package.tools.xmake").install(package)
end)
on_test(function (package)
assert(package:check_cxxsnippets({test = [[
#include "co/def.h"
#include "co/atomic.h"
void test() {
int32 i32 = 0;
atomic_inc(&i32);
}
]]}, {configs = {languages = "c++11"}}))
end)
Loading…
Cancel
Save