Skip to content

Commit

Permalink
Add Package.swift; update .gitignore; update .swift-version file
Browse files Browse the repository at this point in the history
  • Loading branch information
JP Wright authored and loudmouth committed Jun 12, 2018
1 parent 2aeddbd commit 05bf725
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ Pods
# Carthage
Carthage/Build

# Swift Package Manager
.build/

# AppCode specific files
.idea/
*.iml
Expand Down
19 changes: 19 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// swift-tools-version:4.0

import PackageDescription

let package = Package(
name: "DVR",
products: [
.library(
name: "DVR",
targets: ["DVR"])
],
targets: [
.target(name: "DVR"),
.testTarget(
name: "DVRTests",
dependencies: ["DVR"])
]
)

0 comments on commit 05bf725

Please sign in to comment.