forked from snowplow/snowplow-ios-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
44 lines (42 loc) · 1.62 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// swift-tools-version:5.2
import PackageDescription
let package = Package(
name: "SnowplowTracker",
products: [
.library(
name: "SnowplowTracker",
targets: ["SnowplowTracker"]),
],
dependencies: [
.package(name: "FMDB", url: "https://github.com/ccgus/fmdb", from: "2.7.6")
],
targets: [
.target(
name: "SnowplowTracker",
dependencies: ["FMDB"],
path: "./Snowplow",
publicHeadersPath: "./include",
cSettings: [
.headerSearchPath("./Internal/RemoteConfiguration"),
.headerSearchPath("./Internal/Configurations"),
.headerSearchPath("./Internal/Subject"),
.headerSearchPath("./Internal/GDPR"),
.headerSearchPath("./Internal/ScreenViewTracking"),
.headerSearchPath("./Internal/Session"),
.headerSearchPath("./Internal/Utils"),
.headerSearchPath("./Internal/Storage"),
.headerSearchPath("./Internal/NetworkConnection"),
.headerSearchPath("./Internal/Tracker"),
.headerSearchPath("./Internal/Payload"),
.headerSearchPath("./Internal/Logger"),
.headerSearchPath("./Internal/GlobalContexts"),
.headerSearchPath("./Internal/Emitter"),
.headerSearchPath("./Internal/Events"),
.headerSearchPath("./Internal"),
]),
.testTarget(
name: "Snowplow-iOSTests",
dependencies: ["SnowplowTracker"],
path: "Snowplow iOSTests")
]
)