1 2 3 4 5 6 7 8 9 10 11 12 13
local test_build = {} function test_build:build(argv) os.exec("xmake f -c -D -y") os.exec("xmake") os.rm("build") os.exec("xmake f -c -D -y --policies=compatibility.version=3.0") os.exec("xmake -r") end function main() return test_build end