Skip to content

Commit

Permalink
Fix apple_dynamic_framework_import search paths (#2408)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsim authored Feb 22, 2024
1 parent 7f7b216 commit d70bab5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apple/internal/apple_framework_import.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,11 @@ def _apple_dynamic_framework_import_impl(ctx):
deps = deps,
disabled_features = disabled_features,
features = features,
framework_includes = _framework_search_paths(framework.header_imports),
framework_includes = _framework_search_paths(
framework.header_imports +
framework.swift_interface_imports +
framework.swift_module_imports,
),
header_imports = framework.header_imports,
kind = "dynamic",
label = label,
Expand Down

0 comments on commit d70bab5

Please sign in to comment.