-
Notifications
You must be signed in to change notification settings - Fork 150
/
Package.swift
101 lines (98 loc) · 2.96 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
// swift-tools-version:5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "AppDevKit",
platforms: [
.iOS(.v10)
],
products: [
.library(
name: "AppDevKit",
targets: ["AppDevKit"]
),
.library(
name: "AppDevCommonKit",
targets: ["AppDevCommonKit"]
),
.library(
name: "AppDevUIKit",
targets: ["AppDevUIKit"]
),
.library(
name: "AppDevAnimateKit",
targets: ["AppDevAnimateKit"]
),
.library(
name: "AppDevImageKit",
targets: ["AppDevImageKit"]
),
.library(
name: "AppDevListViewKit",
targets: ["AppDevListViewKit"]
),
.library(
name: "AppDevCameraKit",
targets: ["AppDevCameraKit"]
),
],
dependencies: [],
targets: [
.target(
name: "AppDevKit",
dependencies: ["AppDevCommonKit", "AppDevUIKit", "AppDevAnimateKit", "AppDevImageKit", "AppDevListViewKit", "AppDevCameraKit"],
path: "AppDevPods/All",
resources: [.copy("PrivacyInfo.xcprivacy")]
),
.target(
name: "AppDevCommonKit",
path: "AppDevPods/AppDevCommonKit",
resources: [.copy("PrivacyInfo.xcprivacy")],
publicHeadersPath: "."
),
.target(
name: "AppDevUIKit",
path: "AppDevPods/AppDevUIKit",
resources: [.copy("PrivacyInfo.xcprivacy")],
publicHeadersPath: "."
),
.target(
name: "AppDevAnimateKit",
path: "AppDevPods/AppDevAnimateKit",
resources: [.copy("PrivacyInfo.xcprivacy")],
publicHeadersPath: "."
),
.target(
name: "AppDevImageKit",
dependencies: ["AppDevCommonKit"],
path: "AppDevPods/AppDevImageKit",
resources: [.copy("PrivacyInfo.xcprivacy")],
publicHeadersPath: ".",
cSettings: [
.headerSearchPath("../")
]
),
.target(
name: "AppDevListViewKit",
dependencies: ["AppDevUIKit", "AppDevCommonKit"],
path: "AppDevPods/AppDevListViewKit",
resources: [.copy("PrivacyInfo.xcprivacy")],
publicHeadersPath: ".",
cSettings: [
.headerSearchPath("../")
]
),
.target(
name: "AppDevCameraKit",
path: "AppDevPods/AppDevCameraKit",
resources: [.copy("PrivacyInfo.xcprivacy")],
publicHeadersPath: "."
),
.testTarget(
name: "AppDevKitTests",
dependencies: ["AppDevKit"],
path: "AppDevKitTests",
resources: [.copy("PrivacyInfo.xcprivacy")]
)
]
)