// 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: "WebIdMetaPlugin", platforms: [ .iOS(.v13) ], products: [ // Products define the executables and libraries a package produces, and make them visible to other packages. .library(name: "WebIdMetaPlugin", targets: ["WebIdMetaPluginWrapper"]), ], dependencies: [ // Dependencies declare other packages that this package depends on. .package( name: "WebIdVideoIdentProductPlugin", url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-video-ident-product-plugin-spm.git", .branch("legacy-snapshots") ), .package( name: "WebIdDigitalSigningPlugin", url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-digital-signing-plugin-spm", .branch("legacy-snapshots") ) ], targets: [ .binaryTarget( name: "WebIdMetaPlugin", url: "https://api.webid-solutions.de/releases/ios/xcframework/legacy-snapshots/de/webid-solutions/WebIdMetaPlugin/15.4.3/WebIdMetaPlugin.framework-v15.4.3-SNAPSHOT-1379.zip", checksum: "9802e5549ab5834af3588f3dc224f2e8a63c9ad5b591fd48b3d74ba64cf6e980" ), .target( name: "WebIdMetaPluginWrapper", dependencies: [ .target(name: "WebIdMetaPlugin"), // [target dependecies here] .product(name: "WebIdVideoIdentProductPlugin", package: "WebIdVideoIdentProductPlugin"), .product(name: "WebIdDigitalSigningPlugin", package: "WebIdDigitalSigningPlugin"), ] ) ], swiftLanguageVersions: [SwiftVersion.v5] )