blob: b3b3106ffd844da2a9d9802816a0b777df18fb6a (
plain)
1
2
3
4
5
6
7
8
9
10
|
function main(t)
if (os.subarch():startswith("x") or os.subarch() == "i386") and not is_host("bsd", "solaris") then
os.cd("libfoo")
os.exec("xmake package -D -o ../bar/build")
os.cd("../bar")
os.exec("xmake f -c -D")
os.exec("xmake -D")
os.exec("xmake run")
end
end
|