6
0
webid-ui-components-spm/Package.swift
2025-11-24 11:22:58 +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: "WebIdUiKitComponents",
platforms: [
.iOS(.v13)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(name: "WebIdUiKitComponents", targets: ["WebIdUiKitComponentsWrapper"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
],
targets: [
.binaryTarget(
name: "WebIdUiKitComponents",
url: "https://api.webid-solutions.de/releases/ios/xcframework/snapshots/de/webid-solutions/WebIdUiKitComponents/20.3.3/WebIdUiKitComponents.framework-v20.3.3-SNAPSHOT-611.zip",
checksum: "327c43de571858887bf87925ead5feb25bb9041e2d3098eceb65396b139423d5"
),
.target(
name: "WebIdUiKitComponentsWrapper",
dependencies: [
.target(name: "WebIdUiKitComponents"),
// [target dependecies here]
]
)
],
swiftLanguageVersions: [SwiftVersion.v5]
)