Skip to content

Commit

Permalink
Support of Swift Package Manager (#62)
Browse files Browse the repository at this point in the history
Support of Swift Package Manager
  • Loading branch information
TwoDollarsEsq authored Feb 24, 2020
1 parent 1b31f26 commit 2b98462
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
2 changes: 2 additions & 0 deletions HGCircularSlider/Classes/MidPointCircularSlider.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
//
//

import UIKit

/**
A visual control used to select a fixed range of values from a continuous range of values.
MidPointCircularSlider use the target-action mechanism to report changes made during the course of editing:
Expand Down
17 changes: 17 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// swift-tools-version:5.0

import PackageDescription

let package = Package(
name: "HGCircularSlider",
platforms: [.iOS(.v8)],
products: [
.library(
name: "HGCircularSlider",
targets: ["HGCircularSlider"]
)
],
targets: [
.target(name: "HGCircularSlider", path: "HGCircularSlider/Classes")
]
)

0 comments on commit 2b98462

Please sign in to comment.