-
Notifications
You must be signed in to change notification settings - Fork 608
Expand file tree
/
Copy pathPackage.swift
More file actions
68 lines (66 loc) · 1.99 KB
/
Package.swift
File metadata and controls
68 lines (66 loc) · 1.99 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
62
63
64
65
66
67
68
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "Wire",
defaultLocalization: "en",
platforms: [
.iOS(.v10),
.watchOS(.v3),
.macOS(.v10_15)
],
products: [
.library(
name: "Wire",
targets: ["Wire"]
),
],
targets: [
.target(
name: "Wire",
path: "wire-runtime-swift/src/main/swift"
),
// The tests depend on valid protos via gradle
// ./gradlew generateSwiftProtos generateSwiftTests
.testTarget(
name: "WireRuntimeTests",
dependencies: ["Wire"],
path: "wire-runtime-swift/src/test/swift"
),
.target(
name: "WireTests",
dependencies: ["Wire"],
path: "wire-tests-swift/no-manifest/src/main/swift"
),
.target(
name: "module_address",
dependencies: ["Wire"],
path: "wire-tests-swift/manifest/module_address"
),
.target(
name: "module_location",
dependencies: ["Wire"],
path: "wire-tests-swift/manifest/module_location"
),
.target(
name: "module_one",
dependencies: ["Wire", "module_address", "module_location"],
path: "wire-tests-swift/manifest/module_one"
),
.target(
name: "module_two",
dependencies: ["Wire", "module_one"],
path: "wire-tests-swift/manifest/module_two"
),
.target(
name: "module_three",
dependencies: ["Wire", "module_one"],
path: "wire-tests-swift/manifest/module_three"
),
.testTarget(
name: "WireCompilerTests",
dependencies: ["WireTests", "module_address", "module_location", "module_one", "module_two", "module_three"],
path: "wire-tests-swift/no-manifest/src/test/swift"
),
],
swiftLanguageVersions: [.v5]
)