Skip to content

Commit d546afc

Browse files
committed
finilize package
1 parent 4551b17 commit d546afc

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

Package.swift

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ let package = Package(
1212
// Products define the executables and libraries produced by a package, and make them visible to other packages.
1313
.library(
1414
name: "compiled-framework-spm",
15-
targets: ["compiled-framework-spm"])
15+
targets: ["compiled-framework-spm"]
16+
)
1617
],
1718
dependencies: [
1819
// Dependencies declare other packages that this package depends on.
@@ -23,10 +24,15 @@ let package = Package(
2324
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
2425
.target(
2526
name: "compiled-framework-spm",
26-
dependencies: ["Logging"]),
27-
.binaryTarget(name: "Logging", path: "artifacts/Logging.xcframework"),
27+
dependencies: ["Logging"]
28+
),
29+
.binaryTarget(
30+
name: "Logging",
31+
path: "artifacts/Logging.xcframework"
32+
),
2833
.testTarget(
2934
name: "compiled-framework-spmTests",
30-
dependencies: ["compiled-framework-spm"]),
35+
dependencies: ["compiled-framework-spm"]
36+
),
3137
]
3238
)

0 commit comments

Comments
 (0)