aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/objc/ObjcCommandLineOptions.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/objc/ObjcCommandLineOptions.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/objc/ObjcCommandLineOptions.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/objc/ObjcCommandLineOptions.java b/src/main/java/com/google/devtools/build/lib/rules/objc/ObjcCommandLineOptions.java
index 15a775a4c7..71266797eb 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/objc/ObjcCommandLineOptions.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/objc/ObjcCommandLineOptions.java
@@ -305,6 +305,17 @@ public class ObjcCommandLineOptions extends FragmentOptions {
)
public Label objcHeaderScannerTool;
+ @Option(
+ name = "apple_sdk",
+ defaultValue = "null",
+ category = "undocumented",
+ converter = LabelConverter.class,
+ help =
+ "Location of target that will provide the appropriate Apple SDK for the current build "
+ + "configuration."
+ )
+ public Label appleSdk;
+
@Override
public FragmentOptions getHost(boolean fallback) {
ObjcCommandLineOptions host = (ObjcCommandLineOptions) super.getHost(fallback);