mirror of
https://github.com/aljazceru/breez-sdk-liquid.git
synced 2025-12-18 14:34:24 +01:00
* Rename ls-sdk-bindings workspace member * Rename ls-sdk-core workspace member * Rename ls-sdk-react-native
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: "BreezLiquidSDK", targets: ["breez_liquid_sdkFFI", "BreezLiquidSDK"]),
|
|
],
|
|
targets: [
|
|
.binaryTarget(name: "breez_liquid_sdkFFI", path: "./breez_liquid_sdkFFI.xcframework"),
|
|
.target(name: "BreezLiquidSDK", dependencies: ["breez_liquid_sdkFFI"]),
|
|
]
|
|
)
|