Skip to content

Commit 0cc1c9d

Browse files
committed
Exclude info.plist to remove SPM warning
> found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
1 parent c5420cf commit 0cc1c9d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Package.swift

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ let package = Package(
88
.library(name: "PinLayout", targets: ["PinLayout"])
99
],
1010
targets: [
11-
.target(name: "PinLayout", path: "Sources")
11+
.target(
12+
name: "PinLayout",
13+
path: "Sources",
14+
exclude: [
15+
"SupportingFiles/Info.plist"
16+
]
17+
)
1218
]
1319
)

0 commit comments

Comments
 (0)