6
0
webid-sdk-spm/Package.swift
2024-05-29 14:42:29 +02: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/10.0.1/WebIdIosSdk.framework-v10.0.1-SNAPSHOT-589.zip",
checksum: "93591382acf4b102a2f084a844f83f8a0fd785c4eea4b43b8d9e0df40e71cf33"
),
.target(
name: "WebIdIosSdkWrapper",
dependencies: [
.target(name: "WebIdIosSdk"),
// [target dependecies here]
]
)
],
swiftLanguageVersions: [SwiftVersion.v5]
)