Skip to content

Commit

Permalink
Exclude info.plist to remove SPM warning
Browse files Browse the repository at this point in the history
> found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
  • Loading branch information
xloha committed Feb 8, 2022
1 parent c5420cf commit 0cc1c9d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ let package = Package(
.library(name: "PinLayout", targets: ["PinLayout"])
],
targets: [
.target(name: "PinLayout", path: "Sources")
.target(
name: "PinLayout",
path: "Sources",
exclude: [
"SupportingFiles/Info.plist"
]
)
]
)

0 comments on commit 0cc1c9d

Please sign in to comment.