mirror of
https://github.com/aljazceru/breez-sdk-liquid.git
synced 2025-12-18 14:34:24 +01:00
* Rename namespace * Fix flutter build * Fix kotlin-multiplatform CI * Rename repositories
20 lines
584 B
Swift
20 lines
584 B
Swift
// swift-tools-version:5.5
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "bindings-swift",
|
|
platforms: [
|
|
.macOS(.v12),
|
|
.iOS(.v11),
|
|
],
|
|
products: [
|
|
.library(name: "BreezSDKLiquid", targets: ["breez_sdk_liquidFFI", "BreezSDKLiquid"]),
|
|
],
|
|
targets: [
|
|
.binaryTarget(name: "breez_sdk_liquidFFI", path: "./breez_sdk_liquidFFI.xcframework"),
|
|
.target(name: "BreezSDKLiquid", dependencies: ["breez_sdk_liquidFFI"]),
|
|
]
|
|
)
|