|
3 | 3 | // SPDX-License-Identifier: Apache-2.0
|
4 | 4 | // SPDX-License-Identifier: MIT
|
5 | 5 |
|
6 |
| - |
7 |
| - |
8 | 6 | import PackageDescription
|
9 | 7 |
|
10 | 8 | let package = Package(
|
11 |
| - name: "tauri-plugin-notification", |
12 |
| - platforms: [ |
13 |
| - .iOS(.v13), |
14 |
| - ], |
15 |
| - products: [ |
16 |
| - // Products define the executables and libraries a package produces, and make them visible to other packages. |
17 |
| - .library( |
18 |
| - name: "tauri-plugin-notification", |
19 |
| - type: .static, |
20 |
| - targets: ["tauri-plugin-notification"]), |
21 |
| - ], |
22 |
| - dependencies: [ |
23 |
| - .package(name: "Tauri", path: "../.tauri/tauri-api") |
24 |
| - ], |
25 |
| - targets: [ |
26 |
| - // Targets are the basic building blocks of a package. A target can define a module or a test suite. |
27 |
| - // Targets can depend on other targets in this package, and on products in packages this package depends on. |
28 |
| - .target( |
29 |
| - name: "tauri-plugin-notification", |
30 |
| - dependencies: [ |
31 |
| - .byName(name: "Tauri") |
32 |
| - ], |
33 |
| - path: "Sources") |
34 |
| - ] |
| 9 | + name: "tauri-plugin-notification", |
| 10 | + platforms: [ |
| 11 | + .macOS(.v10_13), |
| 12 | + .iOS(.v13), |
| 13 | + ], |
| 14 | + products: [ |
| 15 | + // Products define the executables and libraries a package produces, and make them visible to other packages. |
| 16 | + .library( |
| 17 | + name: "tauri-plugin-notification", |
| 18 | + type: .static, |
| 19 | + targets: ["tauri-plugin-notification"]) |
| 20 | + ], |
| 21 | + dependencies: [ |
| 22 | + .package(name: "Tauri", path: "../.tauri/tauri-api") |
| 23 | + ], |
| 24 | + targets: [ |
| 25 | + // Targets are the basic building blocks of a package. A target can define a module or a test suite. |
| 26 | + // Targets can depend on other targets in this package, and on products in packages this package depends on. |
| 27 | + .target( |
| 28 | + name: "tauri-plugin-notification", |
| 29 | + dependencies: [ |
| 30 | + .byName(name: "Tauri") |
| 31 | + ], |
| 32 | + path: "Sources") |
| 33 | + ] |
35 | 34 | )
|
0 commit comments