mirror of https://github.com/flutter/samples.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
973 B
31 lines
973 B
// swift-tools-version: 5.9
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
//
|
|
// Generated file. Do not edit.
|
|
//
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "FlutterGeneratedPluginSwiftPackage",
|
|
platforms: [
|
|
.macOS("10.15")
|
|
],
|
|
products: [
|
|
.library(name: "FlutterGeneratedPluginSwiftPackage", type: .static, targets: ["FlutterGeneratedPluginSwiftPackage"])
|
|
],
|
|
dependencies: [
|
|
.package(name: "url_launcher_macos", path: "../.packages/url_launcher_macos-3.2.2"),
|
|
.package(name: "FlutterFramework", path: "../.packages/FlutterFramework")
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "FlutterGeneratedPluginSwiftPackage",
|
|
dependencies: [
|
|
.product(name: "url-launcher-macos", package: "url_launcher_macos"),
|
|
.product(name: "FlutterFramework", package: "FlutterFramework")
|
|
]
|
|
)
|
|
]
|
|
)
|