Skip to content

Commit 075e220

Browse files
author
Karim Alweheshy
committed
add full path
1 parent bd311f9 commit 075e220

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tools/generators/pbxnativetargets/src/Generator/CalculatePlatformVariantBuildSettings.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,10 @@ extension Generator.CalculatePlatformVariantBuildSettings {
187187
.init(
188188
key: "LIBRARY_SEARCH_PATHS",
189189
value: platformVariant.librarySearchPaths
190-
.map { $0.path.quoteIfNeeded }
190+
.map {
191+
let path = $0.path.split(separator: "/").dropFirst().joined(separator: "/")
192+
return "\"$(BAZEL_OUT)/\(path)\""
193+
}
191194
.sorted()
192195
.joined(separator: " ")
193196
.pbxProjEscaped

0 commit comments

Comments
 (0)