Make minor cleanups in build.zig (#389)

This commit is contained in:
Turiiya 2024-06-03 06:38:56 +02:00 committed by GitHub
parent 62431928d8
commit 33fd4a2f23
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,5 +1,3 @@
//! Note: This file is just for 0.11 zig!
//! For 0.12 and later, please see zig-webui!
const std = @import("std");
const builtin = @import("builtin");
@ -69,8 +67,7 @@ fn addLinkerFlags(b: *Build, webui: *Compile, enable_tls: bool) !void {
// Prepare compiler flags.
const tls_flags = &[_][]const u8{ "-DWEBUI_TLS", "-DNO_SSL_DL", "-DOPENSSL_API_1_1" };
var civetweb_flags = std.ArrayList([]const u8).init(std.heap.page_allocator);
defer civetweb_flags.deinit();
var civetweb_flags = std.ArrayList([]const u8).init(b.allocator);
try civetweb_flags.appendSlice(&[_][]const u8{ "-DNDEBUG", "-DNO_CACHING", "-DNO_CGI", "-DUSE_WEBSOCKET" });
try civetweb_flags.appendSlice(if (enable_tls) tls_flags else &[_][]const u8{ "-DUSE_WEBSOCKET", "-DNO_SSL" });
if (is_windows) try civetweb_flags.append("-DMUST_IMPLEMENT_CLOCK_GETTIME");