mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-08-02 14:57:31 +03:00
build: only default system libs to false on macOS
This commit is contained in:
@ -234,7 +234,11 @@ pub fn build(b: *std.Build) !void {
|
|||||||
}) |dep| {
|
}) |dep| {
|
||||||
_ = b.systemIntegrationOption(
|
_ = b.systemIntegrationOption(
|
||||||
dep,
|
dep,
|
||||||
.{ .default = !target.result.isDarwin() },
|
.{
|
||||||
|
// If we're not on darwin we want to use whatever the
|
||||||
|
// default is via the system package mode
|
||||||
|
.default = if (target.result.isDarwin()) false else null,
|
||||||
|
},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user