Skip to content

Commit

Permalink
Add SPM support
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Carrasco committed Aug 8, 2022
1 parent d8f25fe commit de2a54d
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,20 +1,24 @@
// swift-tools-version:5.1
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription

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

0 comments on commit de2a54d

Please sign in to comment.