mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
build: -Denable-ios-sdk implies -Denable-macos-sdk
This commit is contained in:
parent
f4afc6525b
commit
583914126f
1 changed files with 1 additions and 1 deletions
|
|
@ -128,8 +128,8 @@ pub fn build(b: *std.Build) !void {
|
||||||
"llvm-has-xtensa",
|
"llvm-has-xtensa",
|
||||||
"Whether LLVM has the experimental target xtensa enabled",
|
"Whether LLVM has the experimental target xtensa enabled",
|
||||||
) orelse false;
|
) orelse false;
|
||||||
const enable_macos_sdk = b.option(bool, "enable-macos-sdk", "Run tests requiring presence of macOS SDK and frameworks") orelse false;
|
|
||||||
const enable_ios_sdk = b.option(bool, "enable-ios-sdk", "Run tests requiring presence of iOS SDK and frameworks") orelse false;
|
const enable_ios_sdk = b.option(bool, "enable-ios-sdk", "Run tests requiring presence of iOS SDK and frameworks") orelse false;
|
||||||
|
const enable_macos_sdk = b.option(bool, "enable-macos-sdk", "Run tests requiring presence of macOS SDK and frameworks") orelse enable_ios_sdk;
|
||||||
const enable_symlinks_windows = b.option(bool, "enable-symlinks-windows", "Run tests requiring presence of symlinks on Windows") orelse false;
|
const enable_symlinks_windows = b.option(bool, "enable-symlinks-windows", "Run tests requiring presence of symlinks on Windows") orelse false;
|
||||||
const config_h_path_option = b.option([]const u8, "config_h", "Path to the generated config.h");
|
const config_h_path_option = b.option([]const u8, "config_h", "Path to the generated config.h");
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue