mirror of
https://github.com/aljazceru/breez-sdk-docs.git
synced 2025-12-17 05:44:20 +01:00
25 lines
935 B
Swift
25 lines
935 B
Swift
// swift-tools-version: 5.9
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "BreezSDKDocs",
|
|
platforms: [.macOS(.v12)],
|
|
dependencies: [
|
|
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.2.3"),
|
|
.package(url: "https://github.com/breez/breez-sdk-swift", from:"0.2.12")
|
|
],
|
|
targets: [
|
|
// Targets are the basic building blocks of a package, defining a module or a test suite.
|
|
// Targets can depend on other targets in this package and products from dependencies.
|
|
.executableTarget(
|
|
name: "BreezSDKDocs",
|
|
dependencies: [
|
|
.product(name: "ArgumentParser", package: "swift-argument-parser"),
|
|
.product(name: "BreezSDK", package: "breez-sdk-swift"),
|
|
],
|
|
path: "Sources"),
|
|
]
|
|
)
|