Skip to content

Commit

Permalink
Merge pull request #2 from ChimeHQ/master
Browse files Browse the repository at this point in the history
Support for SwiftPM
  • Loading branch information
danielpunkass authored Oct 31, 2019
2 parents 403794c + d08204d commit ad24b20
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.build
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: "RSAppMovementMonitor",
platforms: [.macOS("10.12")],
products: [
.library(name: "RSAppMovementMonitor", targets: ["RSAppMovementMonitor"]),
],
dependencies: [],
targets: [
.target(name: "RSAppMovementMonitor", dependencies: [], path: "."),
]
)

0 comments on commit ad24b20

Please sign in to comment.