summaryrefslogtreecommitdiff
path: root/tests/apis/xxx_script/test.lua
blob: 4347ecd3ca5f5887025a7682d6bed64b95ad5983 (plain)
1
2
3
4
5
6
7
8
9
10
function main()
    os.exec("xmake f -c")
    os.exec("xmake")
    if os.host() == "macosx" then
        os.exec("xmake f -p iphoneos")
        os.exec("xmake")
        os.exec("xmake f -p iphoneos -a arm64")
        os.exec("xmake")
    end
end