Created the UI library in the Libraries package.
This commit is contained in:
parent
ae9d79ddcd
commit
644e8f8630
@ -15,6 +15,7 @@ let package = Package(
|
||||
.Target.filter.kit,
|
||||
.Target.foundation.kit,
|
||||
.Target.iTunes.kit,
|
||||
.Target.ui.kit,
|
||||
]
|
||||
),
|
||||
],
|
||||
@ -45,6 +46,13 @@ let package = Package(
|
||||
],
|
||||
path: "iTunes/Kit"
|
||||
),
|
||||
.target(
|
||||
name: .Target.ui.kit,
|
||||
dependencies: [
|
||||
.byName(name: .Target.foundation.kit),
|
||||
],
|
||||
path: "UI/Kit"
|
||||
),
|
||||
.testTarget(
|
||||
name: .Target.feed.test,
|
||||
dependencies: [
|
||||
@ -73,6 +81,13 @@ let package = Package(
|
||||
],
|
||||
path: "iTunes/Test"
|
||||
),
|
||||
.testTarget(
|
||||
name: .Target.ui.test,
|
||||
dependencies: [
|
||||
.byName(name: .Target.ui.kit),
|
||||
],
|
||||
path: "UI/Test"
|
||||
),
|
||||
]
|
||||
)
|
||||
|
||||
@ -91,6 +106,7 @@ private extension String {
|
||||
static let filter = "\(String.Product.name)Filter"
|
||||
static let foundation = "\(String.Product.name)Foundation"
|
||||
static let iTunes = "\(String.Product.name)iTunes"
|
||||
static let ui = "\(String.Product.name)UI"
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user