summaryrefslogtreecommitdiff
path: root/tests/test_utils/test_build.lua
blob: 91f3a410c6c4195133e81e7e52a0c60e9083e56e (plain)
1
2
3
4
5
6
7
8
9
10
local test_build = {}

function test_build:build(argv)
    os.exec("xmake f -c -D -y")
    os.exec("xmake -D")
end

function main()
    return test_build
end