Skip to content

Commit cff162c

Browse files
committed
Add SwiftPM support
1 parent 68f39ed commit cff162c

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// swift-tools-version:5.1
2+
// The swift-tools-version declares the minimum version of Swift required to build this package.
3+
4+
import PackageDescription
5+
6+
let package = Package(
7+
name: "TextFieldEffects",
8+
products: [
9+
.library(name: "TextFieldEffects", targets: ["TextFieldEffects"]),
10+
],
11+
targets: [
12+
.target(name: "TextFieldEffects", path: "TextFieldEffects/TextFieldEffects")
13+
]
14+
)

0 commit comments

Comments
 (0)