Skip to content

Commit

Permalink
Update for Swift 4
Browse files Browse the repository at this point in the history
  • Loading branch information
aciidgh committed Oct 26, 2017
1 parent fc78b6d commit ad433a7
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 3 deletions.
16 changes: 15 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// swift-tools-version:4.0
// The swift-tools-version declares the minimum version of Swift required to build this package.

/*
This source file is part of the Swift.org open source project
Expand All @@ -11,5 +14,16 @@
import PackageDescription

let package = Package(
name: "PlayingCard"
name: "PlayingCard",
products: [
.library(name: "PlayingCard", targets: ["PlayingCard"]),
],
targets: [
.target(
name: "PlayingCard",
dependencies: []),
.testTarget(
name: "PlayingCardTests",
dependencies: ["PlayingCard"]),
]
)
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ This example package will be cloned and built as a dependency if you build the `

git clone https://github.com/apple/example-package-dealer.git
cd example-package-dealer
swift build
.build/debug/Dealer
swift run Dealer

# License

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit ad433a7

Please sign in to comment.