-
Notifications
You must be signed in to change notification settings - Fork 244
/
Package.swift
63 lines (55 loc) · 1.69 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "Countly",
platforms:
[
.iOS(.v10),
.macOS(.v10_14),
.tvOS(.v10),
.watchOS(.v4)
],
products:
[
.library(
name: "Countly",
targets: ["Countly"]),
],
targets:
[
.target(
name: "Countly",
dependencies: [],
path: ".",
exclude:
[
"Info.plist",
"Countly.podspec",
"Countly-PL.podspec",
"LICENSE",
"README.md",
"countly_dsym_uploader.sh",
"format.sh",
"CHANGELOG.md",
"SECURITY.md",
"CountlyTests/"
],
linkerSettings:
[
.linkedFramework("Foundation"),
.linkedFramework("UIKit", .when(platforms: [.iOS, .tvOS])),
.linkedFramework("WatchKit", .when(platforms: [.watchOS])),
.linkedFramework("WatchConnectivity", .when(platforms: [.iOS, .watchOS])),
.linkedFramework("AppKit", .when(platforms: [.macOS])),
.linkedFramework("IOKit", .when(platforms: [.macOS])),
.linkedFramework("UserNotifications", .when(platforms: [.iOS, .macOS])),
.linkedFramework("CoreLocation"),
.linkedFramework("WebKit", .when(platforms: [.iOS])),
.linkedFramework("CoreTelephony", .when(platforms: [.iOS])),
]),
.testTarget(
name: "CountlyTests",
dependencies: ["Countly"]
),
]
)