summaryrefslogtreecommitdiffstats
path: root/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'BUILD.bazel')
-rw-r--r--BUILD.bazel10
1 files changed, 10 insertions, 0 deletions
diff --git a/BUILD.bazel b/BUILD.bazel
index 965c518..14661b6 100644
--- a/BUILD.bazel
+++ b/BUILD.bazel
@@ -56,6 +56,12 @@ config_setting(
values = {"define": "absl=1"},
)
+config_setting(
+ name = "ios",
+ values = {"apple_platform_type": "ios"},
+ visibility = [":__subpackages__"],
+)
+
# Library that defines the FRIEND_TEST macro.
cc_library(
name = "gtest_prod",
@@ -86,6 +92,10 @@ cc_library(
"googlemock/include/gmock/*.h",
]),
copts = select({
+ ":ios": [
+ "-xobjective-c++",
+ "-pthread",
+ ],
":windows": [],
"//conditions:default": ["-pthread"],
}),