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

36 lines
1.2 KiB
Swift
Raw Normal View History

2024-09-05 14:40:08 +02: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",
2025-02-12 16:42:02 +01:00
url: "https://api.webid-solutions.de/releases/ios/xcframework/experimental/de/webid-solutions/WebIdUiKitComponents/8.3.0/WebIdUiKitComponents.framework-v8.3.0-SNAPSHOT-413.zip",
checksum: "0132e560004c6c8cdd1af91e8a788579270911053bd4718f8fcb867c6128a69d"
2024-09-05 14:40:08 +02:00
),
.target(
name: "WebIdUiKitComponentsWrapper",
dependencies: [
.target(name: "WebIdUiKitComponents"),
// [target dependecies here]
]
)
],
swiftLanguageVersions: [SwiftVersion.v5]
)