summaryrefslogtreecommitdiff
path: root/tests/projects/objc++/console/test.lua
blob: 60277b69103147da16e20fa680d6a3d9feb6a262 (plain)
1
2
3
4
5
6
7
8
9
10
-- main entry
function main(t)

    -- build project
    if os.host() == "macosx" then
        t:build({iphoneos = true})
    else
        return t:skip("wrong host platform")
    end
end