Skip to content

Commit

Permalink
Update Package.swift (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
guidev authored Apr 15, 2024
1 parent 26dc667 commit 87c5fa1
Showing 1 changed file with 22 additions and 5 deletions.
27 changes: 22 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
// swift-tools-version:5.0
import PackageDescription

let package = Package(name: "TDBadgedCell")

package.targets = [
Target(name: "TDBadgedCell", dependencies: [])
]
let package = Package(
name: "TDBadgedCell",
platforms: [
.iOS(.v9)
],
products: [
.library(
name: "TDBadgedCell",
targets: ["TDBadgedCell"]
)
],
targets: [
.target(
name: "TDBadgedCell",
dependencies: [],
path: "TDBadgedCell",
sources: ["TDBadgedCell.swift"]
)
],
swiftLanguageVersions: [.v5]
)

0 comments on commit 87c5fa1

Please sign in to comment.