-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Package.swift
38 lines (37 loc) · 1.03 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
// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "IGListKit",
platforms: [ .iOS(.v11),
.tvOS(.v11),
.macOS(.v10_13),
],
products: [
.library(name: "IGListDiffKit",
targets: ["IGListDiffKit"]),
.library(name: "IGListKit",
targets: ["IGListKit"]),
.library(name: "IGListSwiftKit",
targets: ["IGListSwiftKit"]),
],
targets: [
.target(
name: "IGListDiffKit",
path: "spm/Sources/IGListDiffKit",
publicHeadersPath: "include"
),
.target(
name: "IGListKit",
dependencies: ["IGListDiffKit"],
path: "spm/Sources/IGListKit",
publicHeadersPath: "include"
),
.target(
name: "IGListSwiftKit",
dependencies: ["IGListKit"],
path: "spm/Sources/IGListSwiftKit"
),
],
cLanguageStandard: .c11,
cxxLanguageStandard: .cxx11
)