Skip to content

Commit

Permalink
Merge pull request #8 from Legoless/master
Browse files Browse the repository at this point in the history
Swift Package Manager Support
  • Loading branch information
dqhieu authored Mar 27, 2020
2 parents ae49ec6 + 782c6f2 commit 0c15210
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// swift-tools-version:5.0
import PackageDescription

let package = Package(
name: "UIGradient",
products: [
.library(name: "UIGradient", targets: ["UIGradient"]),
],
targets: [
.target(
name: "UIGradient",
path: "Sources",
exclude: [
"Images",
"UIGradientExample",
"UIGradientExample.xcodeproj"
]
)
]
)

0 comments on commit 0c15210

Please sign in to comment.