|
|
|
@ -6,16 +6,16 @@
|
|
|
|
|
import PackageDescription
|
|
|
|
|
|
|
|
|
|
let package = Package(
|
|
|
|
|
name: "tauri-plugin-clipboard",
|
|
|
|
|
name: "tauri-plugin-clipboard-manager",
|
|
|
|
|
platforms: [
|
|
|
|
|
.iOS(.v13),
|
|
|
|
|
],
|
|
|
|
|
products: [
|
|
|
|
|
// Products define the executables and libraries a package produces, and make them visible to other packages.
|
|
|
|
|
.library(
|
|
|
|
|
name: "tauri-plugin-clipboard",
|
|
|
|
|
name: "tauri-plugin-clipboard-manager",
|
|
|
|
|
type: .static,
|
|
|
|
|
targets: ["tauri-plugin-clipboard"]),
|
|
|
|
|
targets: ["tauri-plugin-clipboard-manager"]),
|
|
|
|
|
],
|
|
|
|
|
dependencies: [
|
|
|
|
|
.package(name: "Tauri", path: "../.tauri/tauri-api")
|
|
|
|
@ -24,7 +24,7 @@ let package = Package(
|
|
|
|
|
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
|
|
|
|
|
// Targets can depend on other targets in this package, and on products in packages this package depends on.
|
|
|
|
|
.target(
|
|
|
|
|
name: "tauri-plugin-clipboard",
|
|
|
|
|
name: "tauri-plugin-clipboard-manager",
|
|
|
|
|
dependencies: [
|
|
|
|
|
.byName(name: "Tauri")
|
|
|
|
|
],
|
|
|
|
|