forked from keenlabs/KeenClient-iOS
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Package.swift
48 lines (46 loc) · 1.22 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
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "KeenClientTD",
platforms: [
.iOS(.v12),
.tvOS(.v12),
],
products: [
.library(
name: "KeenClientTD",
targets: ["KeenClientTD"]),
],
dependencies: [
],
targets: [
.target(
name: "KeenClientTD",
dependencies: [],
path: ".",
exclude: [
"KeenClient.xcodeproj/",
"KeenClientExample/",
"KeenClientTD.podspec",
"KeenClientTests",
"Library/Headers/OCMock/",
"Library/libOCMock.a",
"Makefile",
"README.md",
"docs",
"generate_docs.sh",
],
sources: [
"KeenClient/",
"Library/sqlite-amalgamation/",
],
resources: [.copy("PrivacyInfo.xcprivacy")],
publicHeadersPath: "KeenClient",
cxxSettings: [
.headerSearchPath("Library/sqlite-amalgamation"),
.headerSearchPath("KeenClient"),
]
),
],
cxxLanguageStandard: .cxx1z
)