Mario Hahn 5 years ago
parent
commit
88f266f604
1 changed files with 4 additions and 2 deletions
  1. 4 2
      Package.swift

+ 4 - 2
Package.swift

@@ -24,9 +24,11 @@ let package = Package(
         // Targets can depend on other targets in this package, and on products in packages which this package depends on.
         // Targets can depend on other targets in this package, and on products in packages which this package depends on.
         .target(
         .target(
             name: "SwiftyStoreKit",
             name: "SwiftyStoreKit",
-            dependencies: []),
+            dependencies: [],
+            path: "SwiftyStoreKit"),
         .testTarget(
         .testTarget(
             name: "SwiftyStoreKitTests",
             name: "SwiftyStoreKitTests",
-            dependencies: ["SwiftyStoreKit"]),
+            dependencies: ["SwiftyStoreKit"],
+            path: "SwiftyStoreKitTests"),
     ]
     ]
 )
 )