Skip to content

Commit

Permalink
Merge pull request #13 from TwoDollarsEsq/master
Browse files Browse the repository at this point in the history
Support of Swift Package Manager
  • Loading branch information
wibosco authored Jan 16, 2020
2 parents 84a4ed1 + a27f38d commit c8105bc
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// swift-tools-version:5.0

import PackageDescription

let package = Package(
name: "GhostTypewriter",
platforms: [.iOS(.v10)],
products: [
.library(
name: "GhostTypewriter",
targets: ["GhostTypewriter"]
)
],
targets: [
.target(
name: "GhostTypewriter",
path: "GhostTypewriter"
),
.testTarget(
name: "GhostTypewriterTests",
dependencies: ["GhostTypewriter"],
path: "GhostTypewriterTests"
)
]
)

0 comments on commit c8105bc

Please sign in to comment.