We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19935f6 commit edd5f0fCopy full SHA for edd5f0f
2 files changed
examples/integration/BUILD
@@ -25,6 +25,13 @@ string_flag(
25
visibility = ["//visibility:public"],
26
)
27
28
+string_flag(
29
+ name = "flag_with_make_variable",
30
+ build_setting_default = "",
31
+ make_variable = "FLAG_WITH_MAKE_VARIABLE",
32
+ visibility = ["//visibility:public"],
33
+)
34
+
35
# Example of xcodeproj cache warming
36
#
37
# 1. Register a single macOS execution platform in `MODULE.bazel`:
examples/integration/iOSApp/Test/ObjCUnitTests/BUILD
@@ -14,6 +14,7 @@ ios_unit_test(
14
bundle_id = "rules-xcodeproj.example.objctests",
15
env = {
16
"IOS_APP_UNIT_TESTS": "CUSTOM_ENV_VALUE",
17
+ "IOS_APP_UNIT_TESTS_MAKE": "$(FLAG_WITH_MAKE_VARIABLE)",
18
},
19
minimum_os_version = "15.0",
20
tags = ["manual"],
0 commit comments