7
0
webid-ui-components-spm/Package.swift
2026-03-09 11:17:11 +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/21.0.8/WebIdUiKitComponents.framework-v21.0.8-SNAPSHOT-670.zip",
checksum: "e29075529fda3209791a2ec2348e44d0d72ba51a4c211d472f3607a2288b88a6"
),
.target(
name: "WebIdUiKitComponentsWrapper",
dependencies: [
.target(name: "WebIdUiKitComponents"),
// [target dependecies here]
]
)
],
swiftLanguageVersions: [SwiftVersion.v5]
)