6
0

59 lines
2.2 KiB
Swift
Raw Normal View History

2024-08-02 10:03:38 +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: "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.
.package(
name: "WebIdPluginCore",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackageRedesignV4/webid-plugin-core-spm.git",
2025-02-13 13:38:17 +01:00
.branch("redesign-v4-snapshots")
2024-08-02 10:03:38 +02:00
),
.package(
name: "DeviceKit",
url: "https://github.com/devicekit/DeviceKit.git",
.exact("5.2.2")
),
.package(
name: "AhoyKit",
url: "https://github.com/ahoyconference/ahoykit-swift",
2024-09-06 12:36:10 +02:00
.exact("6.1.0")
2024-08-02 10:03:38 +02:00
),
.package(
name: "AhoyWebRTC",
url: "https://github.com/ahoyconference/ahoywebrtc-swift.git",
.exact("1.8.0")
)
],
targets: [
.binaryTarget(
name: "WebIdVideoIdentPlugin",
2025-04-10 17:01:53 +02:00
url: "https://api.webid-solutions.de/releases/ios/xcframework/redesign-v4-snapshots/de/webid-solutions/WebIdVideoIdentPlugin/11.2.1/WebIdVideoIdentPlugin.framework-v11.2.1-SNAPSHOT-413.zip",
checksum: "f0c959f12683e4d0e66763ea148a2073c5d9ab6d804c30cf9083a2060a62459f"
2024-08-02 10:03:38 +02:00
),
.target(
name: "WebIdVideoIdentPluginWrapper",
dependencies: [
.target(name: "WebIdVideoIdentPlugin"),
// [target dependecies here]
.product(name: "WebIdPluginCore", package: "WebIdPluginCore"),
.product(name: "DeviceKit", package: "DeviceKit"),
.product(name: "AhoyKit", package: "AhoyKit"),
.product(name: "AhoyWebRTC", package: "AhoyWebRTC"),
]
)
],
swiftLanguageVersions: [SwiftVersion.v5]
)