We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3e2858 commit 3f5a304Copy full SHA for 3f5a304
1 file changed
Sources/XcodeGenKit/PBXProjGenerator.swift
@@ -1569,6 +1569,11 @@ public class PBXProjGenerator {
1569
continue
1570
}
1571
1572
+ // don't include dependencies from lower levels if they ask to not be included in transitive linking
1573
+ if !isTopLevel && dependency.excludeFromTransitiveLinking {
1574
+ continue
1575
+ }
1576
+
1577
// don't want a dependency if it's going to be embedded or statically linked in a non-top level target
1578
// in .target check we filter out targets that will embed all of their dependencies
1579
// For some more context about the `dependency.embed != true` lines, refer to https://github.com/yonaskolb/XcodeGen/pull/820
0 commit comments