6
0
webid-ui-components-spm/Package.swift
2025-06-10 06:05:58 +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: "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/redesign-v4-snapshots/de/webid-solutions/WebIdUiKitComponents/8.4.4/WebIdUiKitComponents.framework-v8.4.4-SNAPSHOT-498.zip",
checksum: "3712211d4c51b8663e15f43f5d436819a2d4d46dc2818b49c625a7cf8f6ae1e3"
),
.target(
name: "WebIdUiKitComponentsWrapper",
dependencies: [
.target(name: "WebIdUiKitComponents"),
// [target dependecies here]
]
)
],
swiftLanguageVersions: [SwiftVersion.v5]
)