authorgravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2023-08-18 12:05:13+02:00
committergravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2023-08-18 12:05:13+02:00
log583914126fd61a19a9ed97a2e8aa4eec422c06ca
tree10b4ff30d897dd2a7a0708816ab3d95cecf3c582
parentf4afc6525b256bda323a8e3b38ed4ba2bd7ebd68

build: -Denable-ios-sdk implies -Denable-macos-sdk


1 files changed, 1 insertions(+), 1 deletions(-)

build.zig+1-1
...@@ -128,8 +128,8 @@ pub fn build(b: *std.Build) !void {...@@ -128,8 +128,8 @@ pub fn build(b: *std.Build) !void {
128 "llvm-has-xtensa",128 "llvm-has-xtensa",
129 "Whether LLVM has the experimental target xtensa enabled",129 "Whether LLVM has the experimental target xtensa enabled",
130 ) orelse false;130 ) orelse false;
131 const enable_macos_sdk = b.option(bool, "enable-macos-sdk", "Run tests requiring presence of macOS SDK and frameworks") orelse false;
132 const enable_ios_sdk = b.option(bool, "enable-ios-sdk", "Run tests requiring presence of iOS SDK and frameworks") orelse false;131 const enable_ios_sdk = b.option(bool, "enable-ios-sdk", "Run tests requiring presence of iOS SDK and frameworks") orelse false;
132 const enable_macos_sdk = b.option(bool, "enable-macos-sdk", "Run tests requiring presence of macOS SDK and frameworks") orelse enable_ios_sdk;
133 const enable_symlinks_windows = b.option(bool, "enable-symlinks-windows", "Run tests requiring presence of symlinks on Windows") orelse false;133 const enable_symlinks_windows = b.option(bool, "enable-symlinks-windows", "Run tests requiring presence of symlinks on Windows") orelse false;
134 const config_h_path_option = b.option([]const u8, "config_h", "Path to the generated config.h");134 const config_h_path_option = b.option([]const u8, "config_h", "Path to the generated config.h");
135135