Created the Filter library in the Libraries package.
This commit is contained in:
parent
ef6478dcc6
commit
b35f294082
@ -12,6 +12,7 @@ let package = Package(
|
|||||||
name: .Product.name.kit,
|
name: .Product.name.kit,
|
||||||
targets: [
|
targets: [
|
||||||
.Target.feed.kit,
|
.Target.feed.kit,
|
||||||
|
.Target.filter.kit,
|
||||||
.Target.foundation.kit,
|
.Target.foundation.kit,
|
||||||
.Target.iTunes.kit,
|
.Target.iTunes.kit,
|
||||||
]
|
]
|
||||||
@ -25,6 +26,13 @@ let package = Package(
|
|||||||
],
|
],
|
||||||
path: "Feed/Kit"
|
path: "Feed/Kit"
|
||||||
),
|
),
|
||||||
|
.target(
|
||||||
|
name: .Target.filter.kit,
|
||||||
|
dependencies: [
|
||||||
|
.byName(name: .Target.foundation.kit),
|
||||||
|
],
|
||||||
|
path: "Filter/Kit"
|
||||||
|
),
|
||||||
.target(
|
.target(
|
||||||
name: .Target.foundation.kit,
|
name: .Target.foundation.kit,
|
||||||
path: "Foundation/Kit"
|
path: "Foundation/Kit"
|
||||||
@ -44,6 +52,13 @@ let package = Package(
|
|||||||
],
|
],
|
||||||
path: "Feed/Test"
|
path: "Feed/Test"
|
||||||
),
|
),
|
||||||
|
.testTarget(
|
||||||
|
name: .Target.filter.test,
|
||||||
|
dependencies: [
|
||||||
|
.byName(name: .Target.filter.kit),
|
||||||
|
],
|
||||||
|
path: "Filter/Test"
|
||||||
|
),
|
||||||
.testTarget(
|
.testTarget(
|
||||||
name: .Target.foundation.test,
|
name: .Target.foundation.test,
|
||||||
dependencies: [
|
dependencies: [
|
||||||
@ -73,6 +88,7 @@ private extension String {
|
|||||||
|
|
||||||
enum Target {
|
enum Target {
|
||||||
static let feed = "\(String.Product.name)Feed"
|
static let feed = "\(String.Product.name)Feed"
|
||||||
|
static let filter = "\(String.Product.name)Filter"
|
||||||
static let foundation = "\(String.Product.name)Foundation"
|
static let foundation = "\(String.Product.name)Foundation"
|
||||||
static let iTunes = "\(String.Product.name)iTunes"
|
static let iTunes = "\(String.Product.name)iTunes"
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user