Commit 57893245 authored by DrashtiPatel's avatar DrashtiPatel

update target namr

parent 96d8aabb
...@@ -18,10 +18,15 @@ let package = Package( ...@@ -18,10 +18,15 @@ let package = Package(
// 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: "ParentSDKLibrary"), name: "ParentSDKLibrary",
dependencies: [
.target(name: "ParentAppSDK")
]),
.testTarget( .testTarget(
name: "ParentSDKLibraryTests", name: "ParentSDKLibraryTests",
dependencies: ["ParentSDKLibrary"]), dependencies: ["ParentSDKLibrary"]),
.binaryTarget( .binaryTarget(
name: "ParentAppSDK", name: "ParentAppSDK",
path: "./Sources/ParentSDKLibrary/ParentAppSDK.xcframework" path: "./Sources/ParentSDKLibrary/ParentAppSDK.xcframework"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment