-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathPackage.swift
More file actions
20 lines (18 loc) · 596 Bytes
/
Package.swift
File metadata and controls
20 lines (18 loc) · 596 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// swift-tools-version:5.6
import PackageDescription
let package = Package(
name: "CheckmarkCollectionViewCell",
platforms: [
.iOS(.v9),
],
products: [
.library(name: "CheckmarkCollectionViewCell", targets: ["CheckmarkCollectionViewCell"]),
],
dependencies: [
.package(url: "https://github.com/yonat/SweeterSwift", from: "1.0.2"),
],
targets: [
.target(name: "CheckmarkCollectionViewCell", dependencies: ["SweeterSwift"], path: "Sources", resources: [.process("PrivacyInfo.xcprivacy")]),
],
swiftLanguageVersions: [.v5]
)