blob: b3ddd1f6e6524b9fc3a417f7760f0602f1fafac4 (
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_cpp2")
os.exec("xmake -P $(tmpdir)/test_cpp2")
end
|