Skip to content

Commit ac05b0c

Browse files
committed
changes to lib
1 parent 543843d commit ac05b0c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Package.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ let package = Package(
1717
// Targets can depend on other targets in this package and products from dependencies.
1818
.target(
1919
name: "LibFido2Swift",
20-
dependencies: ["LibCrypto", "libfido2", "LibCbor"],
20+
dependencies: ["libCrypto", "libfido2", "libCbor"],
2121
path: "LibFido2Swift",
2222
linkerSettings: [
23-
.linkedLibrary("LibCbor"),
24-
.linkedLibrary("LibCrypto"),
23+
.linkedLibrary("libCbor"),
24+
.linkedLibrary("libCrypto"),
2525
.linkedLibrary("libfido2"),
2626
]
2727
),
28-
.binaryTarget(name: "LibCbor", path: "./Frameworks/LibCbor.xcframework"),
29-
.binaryTarget(name: "LibCrypto", path: "./Frameworks/LibCrypto.xcframework"),
28+
.binaryTarget(name: "libCbor", path: "./Frameworks/libCbor.xcframework"),
29+
.binaryTarget(name: "libCrypto", path: "./Frameworks/libCrypto.xcframework"),
3030
.binaryTarget(name: "libfido2", path: "./Frameworks/libfido2.xcframework"),
3131
]
3232
)

0 commit comments

Comments
 (0)