blob: b7e68db8179ce1c5462e3c9fb4671abff1fb0ae0 (
plain)
1
2
3
4
5
6
7
8
|
function main ()
os.exec("xmake create -P $(tmpdir)/test")
os.exec("xmake -P $(tmpdir)/test")
os.exec("xmake create -l c++ -P $(tmpdir)/test_cpp")
os.exec("xmake -P $(tmpdir)/test_cpp")
os.exec("xmake create -l c++ -t 3 -P $(tmpdir)/test_cpp2")
os.exec("xmake -P $(tmpdir)/test_cpp2")
end
|