diff --git a/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Package.swift b/Package.swift index 9467f6a..be42857 100644 --- a/Package.swift +++ b/Package.swift @@ -1,10 +1,16 @@ -// swift-tools-version:5.0 +// swift-tools-version:5.3 // The swift-tools-version declares the minimum version of Swift required to build this package. import PackageDescription let package = Package( name: "Hover", + platforms: [ + .iOS(.v13), + .macOS(.v10_15), + .tvOS(.v13), + .watchOS(.v6) + ], products: [ // Products define the executables and libraries produced by a package, and make them visible to other packages. .library( @@ -20,9 +26,11 @@ let package = Package( // Targets can depend on other targets in this package, and on products in packages which this package depends on. .target( name: "Hover", - dependencies: []), + dependencies: [], + exclude: ["Info.plist"]), .testTarget( name: "HoverTests", - dependencies: ["Hover"]), + dependencies: ["Hover"], + exclude: ["Info.plist"]) ] )