7
0

53 lines
1.9 KiB
Swift
Raw Normal View History

2024-03-08 09:59:40 +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: "WebIdVideoIdentPlugin",
platforms: [
.iOS(.v13)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(name: "WebIdVideoIdentPlugin", targets: ["WebIdVideoIdentPluginWrapper"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
2025-09-10 14:04:21 +02:00
.package(
name: "WebIdPluginCore",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-plugin-core-spm.git",
2026-01-08 21:28:08 +01:00
.branch("snapshots")
2025-09-10 14:04:21 +02:00
),
2024-03-08 09:59:40 +01:00
.package(
name: "AhoyKit",
url: "https://github.com/ahoyconference/ahoykit-swift",
2024-09-05 12:48:14 +02:00
.exact("6.1.0")
2024-03-08 09:59:40 +01:00
),
.package(
name: "AhoyWebRTC",
url: "https://github.com/ahoyconference/ahoywebrtc-swift.git",
.exact("1.8.0")
)
],
targets: [
.binaryTarget(
name: "WebIdVideoIdentPlugin",
2026-01-28 11:21:33 +01:00
url: "https://api.webid-solutions.de/releases/ios/xcframework/snapshots/de/webid-solutions/WebIdVideoIdentPlugin/21.0.2/WebIdVideoIdentPlugin.framework-v21.0.2-SNAPSHOT-528.zip",
2026-01-28 11:26:16 +01:00
checksum: "4c370036a531d144ff8adc89f9dc30b7521e595091926cad96e403c75ac968bc"
2024-03-08 09:59:40 +01:00
),
.target(
name: "WebIdVideoIdentPluginWrapper",
dependencies: [
.target(name: "WebIdVideoIdentPlugin"),
// [target dependecies here]
2025-09-10 14:04:21 +02:00
.product(name: "WebIdPluginCore", package: "WebIdPluginCore"),
2024-03-08 09:59:40 +01:00
.product(name: "AhoyKit", package: "AhoyKit"),
.product(name: "AhoyWebRTC", package: "AhoyWebRTC"),
]
)
],
swiftLanguageVersions: [SwiftVersion.v5]
)