Skip to content

Commit

Permalink
finilize package
Browse files Browse the repository at this point in the history
  • Loading branch information
wendyliga committed May 30, 2020
1 parent 4551b17 commit d546afc
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ let package = Package(
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "compiled-framework-spm",
targets: ["compiled-framework-spm"])
targets: ["compiled-framework-spm"]
)
],
dependencies: [
// Dependencies declare other packages that this package depends on.
Expand All @@ -23,10 +24,15 @@ let package = Package(
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target(
name: "compiled-framework-spm",
dependencies: ["Logging"]),
.binaryTarget(name: "Logging", path: "artifacts/Logging.xcframework"),
dependencies: ["Logging"]
),
.binaryTarget(
name: "Logging",
path: "artifacts/Logging.xcframework"
),
.testTarget(
name: "compiled-framework-spmTests",
dependencies: ["compiled-framework-spm"]),
dependencies: ["compiled-framework-spm"]
),
]
)

0 comments on commit d546afc

Please sign in to comment.