blob: 83676b2ef7fe7f0ba00ba1c021e6f991af49fdcc (
plain)
1
2
3
4
5
6
7
8
9
10
|
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 static -P $(tmpdir)/test_cpp2")
os.exec("xmake -P $(tmpdir)/test_cpp2")
os.exec("xmake create -l c++ -t shared -P $(tmpdir)/test_cpp3")
os.exec("xmake -P $(tmpdir)/test_cpp3")
end
|