Skip to content

Commit

Permalink
Add swift package manager support
Browse files Browse the repository at this point in the history
  • Loading branch information
renssies committed Nov 30, 2021
1 parent 1980091 commit 9f0bed3
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
//swift-tools-version:5.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription

let package = Package(
name: "Trekker",
platforms: [
.iOS(.v10)
],
products: [
.library(name: "Trekker", targets: ["Trekker"]),
],
targets: [
.target(name: "Trekker", path: "Trekker"),
]
)

0 comments on commit 9f0bed3

Please sign in to comment.