6
0
webid-sdk-spm/Package.swift

36 lines
1.2 KiB
Swift
Raw Normal View History

2024-03-01 12:26:42 +01:00
// swift-tools-version:5.3
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "WebIdIosSdk",
platforms: [
.iOS(.v13)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(name: "WebIdIosSdk", targets: ["WebIdIosSdkWrapper"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
],
targets: [
.binaryTarget(
name: "WebIdIosSdk",
2024-06-11 16:41:43 +02:00
url: "https://api.webid-solutions.de/releases/ios/xcframework/snapshots/de/webid-solutions/WebIdIosSdk/10.0.1/WebIdIosSdk.framework-v10.0.1-SNAPSHOT-591.zip",
checksum: "0a8d8bb12cbc1fc3314556b7e3d62c5ec62b1545f1eda90d195c4f5ce4bee3b4"
2024-03-01 12:26:42 +01:00
),
.target(
name: "WebIdIosSdkWrapper",
dependencies: [
.target(name: "WebIdIosSdk"),
// [target dependecies here]
]
)
],
swiftLanguageVersions: [SwiftVersion.v5]
)