Skip to content

Commit

Permalink
link libraries to package
Browse files Browse the repository at this point in the history
  • Loading branch information
hi2gage committed Oct 18, 2024
1 parent df52724 commit a495c67
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ let package = Package(
.target(
name: "LibFido2Swift",
dependencies: ["LibCrypto", "libfido2", "LibCbor"],
path: "LibFido2Swift"
path: "LibFido2Swift",
linkerSettings: [
.linkedLibrary("LibCbor"),
.linkedLibrary("LibCrypto"),
.linkedLibrary("libfido2"),
]
),
.binaryTarget(name: "LibCbor", path: "./Frameworks/LibCbor.xcframework"),
.binaryTarget(name: "LibCrypto", path: "./Frameworks/LibCrypto.xcframework"),
Expand Down

0 comments on commit a495c67

Please sign in to comment.