6
0
webid-ui-components-spm/Package.swift

36 lines
1.2 KiB
Swift
Raw Normal View History

2024-03-14 12:45:57 +01:00
// 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",
2024-06-05 13:18:41 +02:00
url: "https://api.webid-solutions.de/releases/ios/xcframework/experimental/de/webid-solutions/WebIdUiKitComponents/7.0.1/WebIdUiKitComponents.framework-v7.0.1-SNAPSHOT-247.zip",
2024-06-05 13:25:38 +02:00
checksum: "f9f04509e2a465fc3b13e45de58a739924faf4fe2882bef48e32f45e05d5ec0f"
2024-03-14 12:45:57 +01:00
),
.target(
name: "WebIdUiKitComponentsWrapper",
dependencies: [
.target(name: "WebIdUiKitComponents"),
// [target dependecies here]
]
)
],
swiftLanguageVersions: [SwiftVersion.v5]
)