Skip to content

Commit

Permalink
Add support for Swift Package Manager.
Browse files Browse the repository at this point in the history
  • Loading branch information
ocollet committed Sep 19, 2019
1 parent 9fd4330 commit 067457d
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// swift-tools-version:5.1

import PackageDescription

let package = Package(
name: "Snowplow",
platforms: [
.iOS(.v11),
.macOS(.v10_12),
.tvOS(.v11)
],
products: [
.library(name: "Snowplow",
targets: ["Snowplow"])
],
targets: [
.target(
name: "Snowplow",
path: "Snowplow")
]
)

0 comments on commit 067457d

Please sign in to comment.