summaryrefslogtreecommitdiff
path: root/tests/projects/other/multiplats_xcode/test.lua
blob: 19679707718c1519c26f1df5da7a29b8824036a6 (plain)
1
2
3
4
5
6
7
8
function main(t)
    if is_host("macosx") then
        os.exec("xmake f -c -vD")
        os.exec("xmake -rvD")
        os.exec("xmake f -c -vD -p iphoneos")
        os.exec("xmake -rvD")
    end
end