6
0
webid-sdk-spm/Package.swift
2024-05-23 13:32:41 +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/MWI-1288/de/webid-solutions/WebIdIosSdk/10.0.1/WebIdIosSdk.framework-v10.0.1-SNAPSHOT-588.zip",
checksum: "2891b65d9160273bf525397ed98745ec17d3c486c0d48c4055a1bd38601685e1"
),
.target(
name: "WebIdIosSdkWrapper",
dependencies: [
.target(name: "WebIdIosSdk"),
// [target dependecies here]
]
)
],
swiftLanguageVersions: [SwiftVersion.v5]
)