forked from microsoft/fluentui-apple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
66 lines (64 loc) · 1.98 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// swift-tools-version:5.4
import PackageDescription
let package = Package(
name: "FluentUI",
defaultLocalization: "en",
platforms: [
.iOS(.v14),
.macOS(.v10_14),
],
products: [
.library(
name: "FluentUI",
type: .static,
targets: [
"FluentUI"
]
)
],
targets: [
.target(
name: "FluentUI",
dependencies: [
.target(name: "FluentUI_ios", condition: .when(platforms: [.iOS])),
.target(name: "FluentUI_macos", condition: .when(platforms: [.macOS]))
],
path: "public"
),
.target(
name: "FluentUIResources",
path: "apple"
),
.target(
name: "FluentUI_ios",
dependencies: [
.target(name: "FluentUIResources")
],
path: "ios/FluentUI",
exclude: [
"Avatar/Avatar.resources.xcfilelist",
"BarButtonItems/BarButtonItems.resources.xcfilelist",
"Bottom Commanding/BottomCommanding.resources.xcfilelist",
"Core/Core.resources.xcfilelist",
"HUD/HUD.resources.xcfilelist",
"Navigation/Navigation.resources.xcfilelist",
"Notification/Notification.resources.xcfilelist",
"Other Cells/OtherCells.resources.xcfilelist",
"Resources/Localization/CultureMapping.json",
"Table View/TableView.resources.xcfilelist",
"Tooltip/Tooltip.resources.xcfilelist",
"TwoLineTitleView/TwoLineTitleView.resources.xcfilelist",
]
),
.target(
name: "FluentUI_macos",
dependencies: [
.target(name: "FluentUIResources")
],
path: "macos/FluentUI",
exclude: [
"FluentUI-Info.plist"
]
)
]
)