-
Notifications
You must be signed in to change notification settings - Fork 177
Expand file tree
/
Copy pathPackage.swift
More file actions
89 lines (84 loc) · 2.35 KB
/
Package.swift
File metadata and controls
89 lines (84 loc) · 2.35 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// swift-tools-version:5.10
import PackageDescription
let iOSPlatforms: [Platform] = [.iOS, .visionOS, .macCatalyst]
let macOSPlatforms: [Platform] = [.macOS]
let swiftSettings: [SwiftSetting] = [
.unsafeFlags([
// Per https://forums.swift.org/t/warnings-as-errors-in-sub-packages/70810
// Having this flag enabled in a sub-package causes conflicts with the
// automatic "-suppress-warnings" flag added by Xcode.
//"-warnings-as-errors"
])
]
let targets: [Target] = [
.target(
name: "FluentUI",
dependencies: [
.targetItem(name: "FluentUI_ios", condition: .when(platforms: iOSPlatforms)),
.targetItem(name: "FluentUI_macos", condition: .when(platforms: macOSPlatforms))
],
path: "Sources/FluentUI",
swiftSettings: swiftSettings
),
.target(
name: "FluentUI_ios",
dependencies: [
.target(name: "FluentUI_common")
],
path: "Sources/FluentUI_iOS",
resources: [
.copy("Resources/Version.plist")
],
swiftSettings: swiftSettings
),
.target(
name: "FluentUI_macos",
dependencies: [
.target(name: "FluentUI_common")
],
path: "Sources/FluentUI_macOS",
swiftSettings: swiftSettings
),
.target(
name: "FluentUI_common",
path: "Sources/FluentUI_common",
swiftSettings: swiftSettings
)
]
let testTargets: [Target] = [
.testTarget(
name: "FluentUI_iOS_Tests",
dependencies: [
.target(name: "FluentUI_ios", condition: .when(platforms: iOSPlatforms)),
],
path: "Tests/FluentUI_iOS_Tests",
swiftSettings: swiftSettings
),
.testTarget(
name: "FluentUI_macOS_Tests",
dependencies: [
.target(name: "FluentUI_macos", condition: .when(platforms: macOSPlatforms))
],
path: "Tests/FluentUI_macOS_Tests",
swiftSettings: swiftSettings
)
]
let package = Package(
name: "FluentUI",
defaultLocalization: "en",
platforms: [
.iOS(.v17),
.macOS(.v14),
.visionOS(.v1),
],
products: [
.library(
name: "FluentUI",
type: .static,
targets: [
"FluentUI"
]
)
],
targets: targets + testTargets
)