blob: 561d206cfb33cb62aeca21fb7325fda556c4e079 (
plain)
1
2
3
4
5
6
7
8
|
function main(t)
if not is_host("macosx") then
return t:skip("wrong host platform")
end
os.execv("xmake", {"f", "-p", "macosx", "-a", os.arch(), "-c"})
os.execv("xmake", {"-vD"})
end
|