6
0
webid-sdk-spm/Package.swift
2024-03-01 13:22:26 +01:00

36 lines
1.2 KiB
Swift

// 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",
url: "https://api.webid-solutions.de/releases/ios/xcframework/snapshots/de/webid-solutions/WebIdIosSdk/9.0.0/WebIdIosSdk.framework-v9.0.0-SNAPSHOT-573.zip",
checksum: "64a05c5129016389a8100fdccad33009bf1b95e12116df5911b0227484c76842"
),
.target(
name: "WebIdIosSdkWrapper",
dependencies: [
.target(name: "WebIdIosSdk"),
// [target dependecies here]
]
)
],
swiftLanguageVersions: [SwiftVersion.v5]
)