1 2 3 4 5 6 7 8 9 10
import("lib.detect.find_tool") function test_build(t) local zig = find_tool("zig") if zig then t:build() else return t:skip("zig not found") end end