forked from Iterable/iterable-swift-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
31 lines (29 loc) · 867 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
28
29
30
31
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "IterableSDK",
platforms: [.iOS(.v10)],
products: [
// The external product of our package is an importable
// library that has the same name as the package itself:
.library(
name: "IterableSDK",
targets: ["IterableSDK"]
),
.library(
name: "IterableAppExtensions",
targets: ["IterableAppExtensions"]
),
],
targets: [
.target(name: "IterableSDK",
path: "swift-sdk",
exclude: ["Info.plist"],
resources: [
.process("Resources"),
]),
.target(name: "IterableAppExtensions",
path: "notification-extension",
exclude: ["Info.plist"]),
]
)