File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff 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)
You can’t perform that action at this time.
0 commit comments