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.
This commit is contained in:
Slava Pestov
2025-07-23 11:53:04 -04:00
parent e6b77812ef
commit 56f6c09afd

View File

@@ -178,7 +178,7 @@ targets += multiSourceLibraries.map { lib in
dependencies: [
.target(name: "TestsUtils")
],
path: lib.parentSubDir)
path: "\(lib.parentSubDir)/\(lib.name)")
}
//===---