Fix clean build failures

This commit is contained in:
Shadowfacts 2024-04-11 21:48:41 -04:00
parent baf96a8b06
commit c7d79422bd
1 changed files with 7 additions and 1 deletions

View File

@ -14,11 +14,17 @@ let package = Package(
name: "PushNotifications",
targets: ["PushNotifications"]),
],
dependencies: [
.package(path: "../UserAccounts"),
.package(path: "../Pachyderm"),
],
targets: [
// 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.
.target(
name: "PushNotifications"),
name: "PushNotifications",
dependencies: ["UserAccounts", "Pachyderm"]
),
.testTarget(
name: "PushNotificationsTests",
dependencies: ["PushNotifications"]),