explicit exclusion of objc files in package.swift

This commit is contained in:
John Estropia
2020-01-08 11:01:22 +09:00
parent 4beb11519e
commit 08147806a0

View File

@@ -46,7 +46,7 @@ let package = Package(
name: "CoreStoreTests",
dependencies: ["CoreStore"],
path: "CoreStoreTests",
exclude: ["*.h", "*.m"]
exclude: ["BridgingTests.h", "BridgingTests.m"]
)
],
swiftLanguageVersions: [.v5]