mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
fxi: zig master change
This commit is contained in:
parent
63284fe2a7
commit
c512af1e6c
@ -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 = &.{},
|
||||
|
Loading…
x
Reference in New Issue
Block a user