Skip to content

Commit a94b9dd

Browse files
authored
Merge pull request #4 from csanfilippo/master
Add SPM support
2 parents ca9b649 + cdd5ae4 commit a94b9dd

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Package.swift

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// swift-tools-version: 5.9
2+
3+
import PackageDescription
4+
5+
let package = Package(
6+
name: "ViSenzeAnalytics",
7+
platforms: [.iOS(.v12)],
8+
products: [
9+
.library(
10+
name: "ViSenzeAnalytics",
11+
targets: ["ViSenzeAnalytics"]),
12+
],
13+
targets: [
14+
.target(
15+
name: "ViSenzeAnalytics",
16+
dependencies: [],
17+
path: "ViSenzeAnalytics/ViSenzeAnalytics/Classes",
18+
exclude: ["ViSenzeAnalyticsTests"]
19+
),
20+
]
21+
)

0 commit comments

Comments
 (0)