forked from urbanairship/ios-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
188 lines (185 loc) · 7.76 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
// swift-tools-version:5.3
// Copyright Airship and Contributors
import PackageDescription
let package = Package(
name: "Airship",
defaultLocalization: "en",
platforms: [.macOS(.v10_15), .iOS(.v11), .tvOS(.v11)],
products: [
.library(
name: "Airship",
targets: ["AirshipCore", "AirshipAutomation", "AirshipMessageCenter", "AirshipExtendedActions"]),
.library(
name: "AirshipCore",
targets: ["AirshipCore"]),
.library(
name: "AirshipAutomation",
targets: ["AirshipAutomation"]),
.library(
name: "AirshipMessageCenter",
targets: ["AirshipMessageCenter"]),
.library(
name: "AirshipExtendedActions",
targets: ["AirshipExtendedActions"]),
.library(
name: "AirshipLocation",
targets: ["AirshipLocation"]),
.library(
name: "AirshipAccengage",
targets: ["AirshipAccengage"]),
.library(
name: "AirshipDebug",
targets: ["AirshipDebug"]),
.library(
name: "AirshipNotificationContentExtension",
targets: ["AirshipNotificationContentExtension"]),
.library(
name: "AirshipNotificationServiceExtension",
targets: ["AirshipNotificationServiceExtension"])
],
targets: [
.target(name: "AirshipCore",
path: "Airship/AirshipCore",
exclude: ["Resources/ios/Info.plist",
"Resources/tvos/Info.plist",
"Source/common/AirshipCore.h",
"generate_header_imports.sh",
"Info.plist",
"Resources/tvos/UADefaultActions.plist",
"Tests"],
sources : ["Source"],
resources: [
.process("Resources")],
publicHeadersPath: "Source/Public",
cSettings: [
.headerSearchPath("Source/common"),
.headerSearchPath("Source/ios", .when(platforms: [.iOS])),
.headerSearchPath("Source/tvos", .when(platforms: [.tvOS]))],
linkerSettings: [
//Frameworks
.linkedFramework("UserNotifications"),
.linkedFramework("CFNetwork"),
.linkedFramework("CoreGraphics"),
.linkedFramework("Foundation"),
.linkedFramework("Security"),
.linkedFramework("SystemConfiguration"),
.linkedFramework("UIKit"),
.linkedFramework("CoreData"),
.linkedFramework("WebKit", .when(platforms: [.iOS])),
.linkedFramework("CoreTelephony", .when(platforms: [.iOS])),
//Libraries
.linkedLibrary("z"),
.linkedLibrary("sqlite3")
]
),
.target(name:"AirshipAutomation",
dependencies: [.target(name: "AirshipCore")],
path: "Airship/AirshipAutomation",
exclude: ["Resources/Info.plist",
"Source/AirshipAutomation.h",
"generate_header_imports.sh",
"Info.plist"],
sources : ["Source"],
resources: [
.process("Resources")],
publicHeadersPath: "Source/Public",
cSettings: [
.headerSearchPath("Source")],
linkerSettings: [
.linkedFramework("UIKit")]
),
.target(name:"AirshipMessageCenter",
dependencies: [.target(name: "AirshipCore")],
path: "Airship/AirshipMessageCenter",
exclude: ["Resources/Info.plist",
"Source/AirshipMessageCenter.h",
"generate_header_imports.sh",
"Info.plist"],
sources : ["Source"],
resources: [
.process("Resources")],
publicHeadersPath: "Source/Public",
cSettings: [
.headerSearchPath("Source"),
.headerSearchPath("Source/Inbox"),
.headerSearchPath("Source/Inbox/Data"),
.headerSearchPath("Source/User"),]
),
.target(name:"AirshipExtendedActions",
dependencies: [.target(name: "AirshipCore")],
path: "Airship/AirshipExtendedActions",
exclude: ["Resources/Info.plist",
"Source/AirshipExtendedActions.h",
"generate_header_imports.sh",
"Info.plist"],
sources : ["Source"],
resources: [
.process("Resources")
],
publicHeadersPath: "Source/Public",
cSettings: [
.headerSearchPath("Source/RateApp")],
linkerSettings: [
.linkedFramework("StoreKit")]
),
.target(name:"AirshipLocation",
dependencies: [.target(name: "AirshipCore")],
path: "Airship/AirshipLocation",
exclude: ["Source/AirshipLocation.h",
"Info.plist"],
sources : ["Source"],
publicHeadersPath: "Source/Public",
cSettings: [
.headerSearchPath("Source")],
linkerSettings: [
.linkedFramework("CoreLocation")]
),
.target(name:"AirshipAccengage",
dependencies: [.target(name: "AirshipCore")],
path: "Airship/AirshipAccengage",
exclude: ["Source/AirshipAccengage.h",
"info.plist",
"Tests"],
sources : ["Source"],
resources: [
.process("Resources")],
publicHeadersPath: "Source/Public",
cSettings: [
.headerSearchPath("Source"),
.headerSearchPath("Source/AccengageInternal")]
),
.target(name:"AirshipDebug",
dependencies: [ .target(name: "AirshipCore"),
.target(name: "AirshipAutomation"),
.target(name: "AirshipMessageCenter"),
.target(name: "AirshipExtendedActions"),
.target(name: "AirshipLocation")],
path: "Airship/AirshipDebug",
exclude: ["Source/AirshipDebug.h",
"Info.plist"],
sources : ["Source"],
resources: [
.process("Resources")]
),
.target(name:"AirshipNotificationContentExtension",
path: "AirshipExtensions/AirshipNotificationContentExtension",
exclude: ["Source/AirshipNotificationContentExtension.h",
"Info.plist",
"Tests"],
sources : ["Source"],
resources: [
.process("Resources")],
publicHeadersPath: "Source/Public"
),
.target(name:"AirshipNotificationServiceExtension",
path: "AirshipExtensions/AirshipNotificationServiceExtension",
exclude: ["Source/AirshipNotificationServiceExtension.h",
"Info.plist",
"Tests"],
sources : ["Source"],
resources: [
.process("Resources")],
publicHeadersPath: "Source"
)
]
)