Skip to content

Commit

Permalink
SPM support (#104)
Browse files Browse the repository at this point in the history
* Added Package.swift

* Add path to tests folder in Package.swift

* Bump version number
  • Loading branch information
ferranabello authored Sep 7, 2019
1 parent 961052d commit 29fcb8e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// swift-tools-version:5.0
import PackageDescription

let package = Package(
name: "Viperit",
platforms: [.iOS("8.0")],
products: [
.library(name: "Viperit", targets: ["Viperit"])
],
targets: [
.target(name: "Viperit", path: "Viperit"),
.testTarget(name: "ViperitTests", dependencies: ["Viperit"], path: "ViperitTests")
]
)
2 changes: 1 addition & 1 deletion Viperit/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.3.2</string>
<string>1.3.3</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
Expand Down

0 comments on commit 29fcb8e

Please sign in to comment.