Skip to content

Commit 7d02978

Browse files
committed
Add file exclusion in Package.swift
A warning was being emitted as a result of the README.md. Add it to the exclusion list of the respctive target to remove the warning
1 parent d254698 commit 7d02978

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Package.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,10 @@ let package = Package(
262262
.target(
263263
name: "SWBWindowsPlatform",
264264
dependencies: ["SWBCore", "SWBMacro", "SWBUtil"],
265-
exclude: ["CMakeLists.txt"],
265+
exclude: [
266+
"CMakeLists.txt",
267+
"README.md",
268+
],
266269
resources: [.process("Specs")],
267270
swiftSettings: swiftSettings(languageMode: .v6)),
268271

0 commit comments

Comments
 (0)