mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
Don't return silently when zig build is not possible
This commit is contained in:
parent
a3f3174c73
commit
c448c52182
@ -17,6 +17,8 @@ const default_enableTLS = false;
|
||||
|
||||
pub fn build(b: *Build) void {
|
||||
if (current_version > 11) {
|
||||
log.err("unsupported Zig version. For building with 0.12 and later, plaese see `github.com/webui-dev/zig-webui`", .{});
|
||||
std.process.exit(1);
|
||||
return;
|
||||
}
|
||||
const isStatic = b.option(bool, "is_static", "whether lib is static") orelse default_isStatic;
|
||||
|
Loading…
x
Reference in New Issue
Block a user