We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d35579a commit a5973ecCopy full SHA for a5973ec
Sources/Build/BuildOperationBuildSystemDelegateHandler.swift
@@ -336,7 +336,7 @@ public struct BuildDescription: Codable {
336
self.copyCommands = copyCommands
337
self.explicitTargetDependencyImportCheckingMode = plan.buildParameters.explicitTargetDependencyImportCheckingMode
338
self.targetDependencyMap = try plan.targets.reduce(into: [TargetName: [TargetName]]()) {
339
- let deps = try $1.target.recursiveTargetDependencies().map { $0.c99name }
+ let deps = try $1.target.recursiveDependencies(satisfying: plan.buildParameters.buildEnvironment).compactMap { $0.target }.map { $0.c99name }
340
$0[$1.target.c99name] = deps
341
}
342
var targetCommandLines: [TargetName: [CommandLineFlag]] = [:]
0 commit comments