From c7d79422bd0ba7a59850a79e48070fce7c999aab Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Thu, 11 Apr 2024 21:48:41 -0400 Subject: [PATCH] Fix clean build failures --- Packages/PushNotifications/Package.swift | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Packages/PushNotifications/Package.swift b/Packages/PushNotifications/Package.swift index aa1efd40..8fc9df22 100644 --- a/Packages/PushNotifications/Package.swift +++ b/Packages/PushNotifications/Package.swift @@ -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"]),