summaryrefslogtreecommitdiff
path: root/tests/apis/xxx_script/test.lua
blob: bb2762d7d64fe3137727302eb6ef34e83874f60a (plain)
1
2
3
4
5
6
7
8
9
function main()
    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