-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject.swift
More file actions
36 lines (35 loc) · 1.11 KB
/
Project.swift
File metadata and controls
36 lines (35 loc) · 1.11 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
import ProjectDescription
let project = Project(
name: "NavigationSplitViewKit",
targets: [
.target(
name: "NavigationSplitViewKit",
destinations: [.iPhone, .iPad, .mac],
product: .framework,
bundleId: "com.example.NavigationSplitViewKit",
deploymentTargets: .multiplatform(
iOS: "17.0",
macOS: "14.0"
),
infoPlist: .default,
sources: ["Sources/NavigationSplitViewKit/**"],
resources: [],
dependencies: []
),
.target(
name: "NavigationSplitViewKitTests",
destinations: [.iPhone, .iPad, .mac],
product: .unitTests,
bundleId: "com.example.NavigationSplitViewKitTests",
deploymentTargets: .multiplatform(
iOS: "17.0",
macOS: "14.0"
),
infoPlist: .default,
sources: ["Tests/NavigationSplitViewKitTests/**"],
dependencies: [
.target(name: "NavigationSplitViewKit")
]
),
]
)