-
Notifications
You must be signed in to change notification settings - Fork 24
/
Package.swift
48 lines (46 loc) · 1.21 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: 6.0
import PackageDescription
let package = Package(
name: "MigrationGuide",
platforms: [
.macOS(.v10_15),
.iOS(.v13),
.watchOS(.v6),
.tvOS(.v13),
.macCatalyst(.v13),
.visionOS(.v1),
],
products: [
.library(
name: "Library",
targets: ["Library"]
),
.executable(name: "swift5_examples", targets: ["Swift5Examples"]),
.executable(name: "swift6_examples", targets: ["Swift6Examples"]),
],
targets: [
.target(
name: "Library"
),
.testTarget(
name: "LibraryXCTests",
dependencies: ["ObjCLibrary", "Library"]
),
.target(
name: "ObjCLibrary",
publicHeadersPath: "."
),
.executableTarget(
name: "Swift5Examples",
dependencies: ["Library", "ObjCLibrary"],
swiftSettings: [
.swiftLanguageVersion(.v5),
.enableUpcomingFeature("StrictConcurrency"),
]
),
.executableTarget(
name: "Swift6Examples",
dependencies: ["Library", "ObjCLibrary"]
)
]
)