-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.swift
27 lines (26 loc) · 912 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
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "TealiumContentsquare",
platforms: [
.iOS(.v12)
],
products: [
.library(name: "TealiumContentsquare", targets: ["TealiumContentsquare"])
],
dependencies: [
.package(url: "https://github.com/tealium/tealium-swift", .upToNextMajor(from: "2.12.0")),
.package(url: "https://github.com/ContentSquare/CS_iOS_SDK", .upToNextMajor(from: "4.19.0"))
],
targets: [
.target(
name: "TealiumContentsquare",
dependencies: [
.product(name: "TealiumCore", package: "tealium-swift"),
.product(name: "TealiumRemoteCommands", package: "tealium-swift"),
.product(name: "ContentsquareModule", package: "CS_iOS_SDK")
],
path: "./Sources",
exclude: ["Support"])
]
)