Skip to content

Commit e02435e

Browse files
authored
Merge pull request #246 from xloha/master
Exclude info.plist to remove SPM warning
2 parents c988f46 + 6e65bd1 commit e02435e

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)