forked from microsoft/plcrashreporter
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Package.swift
51 lines (49 loc) · 1.64 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
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "PLCrashReporter",
defaultLocalization: "en",
platforms: [
.iOS(.v11),
.macOS(.v10_10),
.tvOS(.v11)
],
products: [
.library(name: "CrashReporter", targets: ["CrashReporter"])
],
targets: [
.target(
name: "CrashReporter",
path: "",
exclude: [
"Source/dwarf_opstream.hpp",
"Source/dwarf_stack.hpp",
"Source/PLCrashAsyncDwarfCFAState.hpp",
"Source/PLCrashAsyncDwarfCIE.hpp",
"Source/PLCrashAsyncDwarfEncoding.hpp",
"Source/PLCrashAsyncDwarfExpression.hpp",
"Source/PLCrashAsyncDwarfFDE.hpp",
"Source/PLCrashAsyncDwarfPrimitives.hpp",
"Source/PLCrashAsyncLinkedList.hpp",
"Source/PLCrashReport.proto",
"Tools/CrashViewer/",
"Other Sources/Crash Demo/"
],
sources: [
"Source",
"Dependencies/protobuf-c"
],
resources: [.process("Resources/PrivacyInfo.xcprivacy")],
cSettings: [
.define("PLCR_PRIVATE"),
.define("PLCF_RELEASE_BUILD"),
.define("PLCRASHREPORTER_PREFIX", to: ""),
.define("SWIFT_PACKAGE"), // Should be defined by default, Xcode 11.1 workaround.
.headerSearchPath("Dependencies/protobuf-c")
],
linkerSettings: [
.linkedFramework("Foundation")
]
)
]
)