Skip to content

Commit 56f6c09

Browse files
committed
Benchmarks: Fix multi-source benchmarks
The swiftpm build was broken and it only worked if there was exactly one multi-source benchmark. Use the correct subdirectory for each one.
1 parent e6b7781 commit 56f6c09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmark/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ targets += multiSourceLibraries.map { lib in
178178
dependencies: [
179179
.target(name: "TestsUtils")
180180
],
181-
path: lib.parentSubDir)
181+
path: "\(lib.parentSubDir)/\(lib.name)")
182182
}
183183

184184
//===---

0 commit comments

Comments
 (0)