Skip to content

Commit

Permalink
Merge pull request #26 from smamczak/spm
Browse files Browse the repository at this point in the history
Swift Package Manager support
  • Loading branch information
BeauNouvelle authored Aug 1, 2020
2 parents e61839e + 5b4cda9 commit 7751caf
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// swift-tools-version:5.2
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

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

0 comments on commit 7751caf

Please sign in to comment.