-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
61 lines (59 loc) · 1.6 KB
/
Copy pathPackage.swift
File metadata and controls
61 lines (59 loc) · 1.6 KB
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
// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "SwiftProtoReflect",
platforms: [
.macOS(.v12),
.iOS(.v15),
],
products: [
.library(
name: "SwiftProtoReflect",
targets: ["SwiftProtoReflect"]
)
],
dependencies: [
.package(url: "https://github.com/apple/swift-protobuf.git", from: "1.29.0")
],
targets: [
.target(
name: "SwiftProtoReflect",
dependencies: [
.product(name: "SwiftProtobuf", package: "swift-protobuf")
],
exclude: [
"Dynamic/_README.md",
"Bridge/_README.md",
"Descriptor/_README.md",
"Serialization/_README.md",
"Registry/_README.md",
"Integration/_README.md",
]
),
.testTarget(
name: "SwiftProtoReflectTests",
dependencies: [
"SwiftProtoReflect",
.product(name: "SwiftProtobuf", package: "swift-protobuf"),
],
exclude: [
"Fixtures/README.md",
"Mocks/README.md",
"TestUtils/README.md",
"TestResources/README.md",
],
resources: [
.copy("Fixtures/StructProto"),
.copy("Fixtures/Proto/common_types.proto"),
.copy("Fixtures/Proto/scalar_types.proto"),
.copy("Fixtures/Proto/container_types.proto"),
.copy("Fixtures/Proto/oneof_types.proto"),
.copy("Fixtures/Proto/nesting_types.proto"),
.copy("Fixtures/Proto/wkt_types.proto"),
.copy("Fixtures/Proto/proto2_types.proto"),
.copy("Fixtures/Proto/realworld_types.proto"),
.copy("Fixtures/Proto/cross_file_types.proto"),
]
),
]
)