From 8af82b45940ebd3dfccdc52adbabac75c3a2615d Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Thu, 4 Feb 2021 20:41:08 +1000 Subject: [PATCH] exclude Mac dylib from '...' --- qt/mac/BUILD.bazel | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qt/mac/BUILD.bazel b/qt/mac/BUILD.bazel index fc5fcd7ee..ef9684fab 100644 --- a/qt/mac/BUILD.bazel +++ b/qt/mac/BUILD.bazel @@ -4,9 +4,9 @@ objc_library( name = "helper_static", srcs = ["AnkiHelper.m"], enable_modules = True, - alwayslink = True, sdk_frameworks = ["AppKit"], tags = ["manual"], + alwayslink = True, ) apple_binary( @@ -14,6 +14,7 @@ apple_binary( binary_type = "dylib", minimum_os_version = "10.14", platform_type = "macos", + tags = ["manual"], visibility = ["//qt:__subpackages__"], deps = ["helper_static"], )