Skip to content

Commit

Permalink
Add basic support for Swift Package Manager (#64)
Browse files Browse the repository at this point in the history
Add basic support for Swift Package Manager

Co-authored-by: Kizito Nwose <[email protected]>
  • Loading branch information
kizitonwose authored Jun 2, 2019
2 parents 1620b58 + b21cb48 commit 9af3a81
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// swift-tools-version:5.0
import PackageDescription

let package = Package(
name: "CountryPickerView",
products: [
.library(name: "CountryPickerView", targets: ["CountryPickerView"])
],
targets: [
.target(
name: "CountryPickerView",
path: "CountryPickerView"
)
]
)

0 comments on commit 9af3a81

Please sign in to comment.