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