forked from shadowfacts/Tusker
Fix clean build failures
This commit is contained in:
parent
baf96a8b06
commit
c7d79422bd
|
@ -14,11 +14,17 @@ let package = Package(
|
||||||
name: "PushNotifications",
|
name: "PushNotifications",
|
||||||
targets: ["PushNotifications"]),
|
targets: ["PushNotifications"]),
|
||||||
],
|
],
|
||||||
|
dependencies: [
|
||||||
|
.package(path: "../UserAccounts"),
|
||||||
|
.package(path: "../Pachyderm"),
|
||||||
|
],
|
||||||
targets: [
|
targets: [
|
||||||
// Targets are the basic building blocks of a package, defining a module or a test suite.
|
// Targets are the basic building blocks of a package, defining a module or a test suite.
|
||||||
// Targets can depend on other targets in this package and products from dependencies.
|
// Targets can depend on other targets in this package and products from dependencies.
|
||||||
.target(
|
.target(
|
||||||
name: "PushNotifications"),
|
name: "PushNotifications",
|
||||||
|
dependencies: ["UserAccounts", "Pachyderm"]
|
||||||
|
),
|
||||||
.testTarget(
|
.testTarget(
|
||||||
name: "PushNotificationsTests",
|
name: "PushNotificationsTests",
|
||||||
dependencies: ["PushNotifications"]),
|
dependencies: ["PushNotifications"]),
|
||||||
|
|
Loading…
Reference in New Issue