fxi: zig master change

This commit is contained in:
jinzhongjia 2025-02-23 16:47:35 +08:00
parent 63284fe2a7
commit c512af1e6c

View File

@ -73,6 +73,7 @@ fn addLinkerFlags(
) !void {
const webui_target = webui.rootModuleTarget();
const is_windows = webui_target.os.tag == .windows;
const is_darwin = webui_target.os.tag == .macos;
const debug = webui.root_module.optimize.? == .Debug;
// Prepare compiler flags.
@ -108,7 +109,7 @@ fn addLinkerFlags(
webui.linkLibC();
webui.addIncludePath(b.path("include"));
webui.installHeader(b.path("include/webui.h"), "webui.h");
if (webui_target.isDarwin()) {
if (is_darwin) {
webui.addCSourceFile(.{
.file = b.path("src/webview/wkwebview.m"),
.flags = &.{},