Skip to content

Commit

Permalink
Add basic support for Swift Package Manager
Browse files Browse the repository at this point in the history
  • Loading branch information
carsonxyz committed Jun 2, 2019
1 parent 4c81ab6 commit b21cb48
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 b21cb48

Please sign in to comment.