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,
|
||||
targets: [
|
||||
.Target.feed.kit,
|
||||
.Target.filter.kit,
|
||||
.Target.foundation.kit,
|
||||
.Target.iTunes.kit,
|
||||
]
|
||||
@ -25,6 +26,13 @@ let package = Package(
|
||||
],
|
||||
path: "Feed/Kit"
|
||||
),
|
||||
.target(
|
||||
name: .Target.filter.kit,
|
||||
dependencies: [
|
||||
.byName(name: .Target.foundation.kit),
|
||||
],
|
||||
path: "Filter/Kit"
|
||||
),
|
||||
.target(
|
||||
name: .Target.foundation.kit,
|
||||
path: "Foundation/Kit"
|
||||
@ -44,6 +52,13 @@ let package = Package(
|
||||
],
|
||||
path: "Feed/Test"
|
||||
),
|
||||
.testTarget(
|
||||
name: .Target.filter.test,
|
||||
dependencies: [
|
||||
.byName(name: .Target.filter.kit),
|
||||
],
|
||||
path: "Filter/Test"
|
||||
),
|
||||
.testTarget(
|
||||
name: .Target.foundation.test,
|
||||
dependencies: [
|
||||
@ -73,6 +88,7 @@ private extension String {
|
||||
|
||||
enum Target {
|
||||
static let feed = "\(String.Product.name)Feed"
|
||||
static let filter = "\(String.Product.name)Filter"
|
||||
static let foundation = "\(String.Product.name)Foundation"
|
||||
static let iTunes = "\(String.Product.name)iTunes"
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user