-
-
Notifications
You must be signed in to change notification settings - Fork 781
/
Package.swift
28 lines (27 loc) · 911 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "MorphingLabel",
products: [
.library(name: "MorphingLabel", targets: ["MorphingLabel"]),
.library(name: "MorphingLabelDynamic", type: .dynamic, targets: ["MorphingLabel"]),
.library(name: "MorphinglabelXCFramework", targets: ["LTMorphingLabel"])
],
targets: [
.target(
name: "MorphingLabel",
exclude: [
"Info.plist",
"tvOS-Info.plist"
],
resources: [
.process("Particles")
]
),
.binaryTarget(
name: "LTMorphingLabel",
url: "https://github.com/lexrus/LTMorphingLabel/releases/download/0.9.3/LTMorphingLabel.xcframework.zip",
checksum: "28a0ed8b7df12c763d45b7dde2aa41fd843984b79e6fbd3750f2fc1a6c247a13"
)
]
)