summaryrefslogtreecommitdiff
path: root/tests/projects/zig/c_interop_with_package/test.lua
blob: 62ed37e4da2fa30e7486c518efc57c13366f5c43 (plain)
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