Skip to content

Commit

Permalink
Merge pull request #19 from pawello2222/fix/update-package
Browse files Browse the repository at this point in the history
Fix warnings in Package.swift
  • Loading branch information
smuellner authored Nov 8, 2021
2 parents 5434278 + 3e408de commit 4e95f70
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import PackageDescription

let package = Package(
name: "GameKitUI",
platforms: [ .iOS(SupportedPlatform.IOSVersion.v13),
.macOS(SupportedPlatform.MacOSVersion.v10_15),
.tvOS(SupportedPlatform.TVOSVersion.v13),
.watchOS(SupportedPlatform.WatchOSVersion.v6)
platforms: [ .iOS(.v13),
.macOS(.v10_15),
.tvOS(.v13),
.watchOS(.v6)
],
products: [
.library(
Expand All @@ -19,9 +19,7 @@ let package = Package(
],
targets: [
.target(
name: "GameKitUI",
dependencies: [],
exclude: ["MetaData", "Examples"]),
name: "GameKitUI"),
.testTarget(
name: "GameKitUITests",
dependencies: ["GameKitUI"])
Expand Down

0 comments on commit 4e95f70

Please sign in to comment.