summaryrefslogtreecommitdiff
path: root/tests/test_utils/test_build.lua
blob: d32055c10b3c394f23cf7fe39a4b36366b9ee831 (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")
end

function main()
    return test_build
end