You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compiles and links Objective-C and Swift code into a static library.
@@ -390,8 +390,8 @@ mixed language modules in some old codebases. This macro is meant to make
390
390
it easier to migrate codebases with mixed language modules to Bazel without
391
391
having to demix them first.
392
392
393
-
This macro only supports a very simple use case of mixed language
394
-
modules---it does not support for header maps or Clang modules.
393
+
This macro only supports a simple use case of mixed language
394
+
modules, it does not support header maps.
395
395
396
396
397
397
**PARAMETERS**
@@ -402,6 +402,7 @@ modules---it does not support for header maps or Clang modules.
402
402
| <aid="experimental_mixed_language_library-name"></a>name | A unique name for this target. | none |
403
403
| <aid="experimental_mixed_language_library-srcs"></a>srcs | The list of Objective-C and Swift source files to compile. | none |
404
404
| <aid="experimental_mixed_language_library-deps"></a>deps | A list of targets that are dependencies of the target being built, which will be linked into that target. |`[]`|
405
+
| <aid="experimental_mixed_language_library-enable_modules"></a>enable_modules | Enables clang module support for the Objective-C target. |`False`|
405
406
| <aid="experimental_mixed_language_library-module_name"></a>module_name | The name of the mixed language module being built. If left unspecified, the module name will be the name of the target. |`None`|
406
407
| <aid="experimental_mixed_language_library-objc_copts"></a>objc_copts | Additional compiler options that should be passed to `clang`. |`[]`|
407
408
| <aid="experimental_mixed_language_library-swift_copts"></a>swift_copts | Additional compiler options that should be passed to `swiftc`. These strings are subject to `$(location ...)` and "Make" variable expansion. |`[]`|
0 commit comments