File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44import PackageDescription
55
66let package = Package (
7- name: " devtools " ,
8- platforms: [
9- . iOS( . v13) ,
10- ] ,
11- products: [
12- // Products define the executables and libraries a package produces, and make them visible to other packages.
13- . library(
14- name: " devtools " ,
15- type: . static,
16- targets: [ " devtools " ] ) ,
17- ] ,
18- dependencies: [
19- . package ( name: " Tauri " , path: " ../.tauri/tauri-api " )
20- ] ,
21- targets: [
22- // Targets are the basic building blocks of a package. A target can define a module or a test suite.
23- // Targets can depend on other targets in this package, and on products in packages this package depends on.
24- . target(
25- name: " devtools " ,
26- dependencies: [
27- . byName( name: " Tauri " )
28- ] ,
29- path: " Sources " )
30- ]
7+ name: " tauri-plugin- devtools" ,
8+ platforms: [
9+ . iOS( . v13)
10+ ] ,
11+ products: [
12+ // Products define the executables and libraries a package produces, and make them visible to other packages.
13+ . library(
14+ name: " tauri-plugin- devtools" ,
15+ type: . static,
16+ targets: [ " tauri-plugin- devtools" ] )
17+ ] ,
18+ dependencies: [
19+ . package ( name: " Tauri " , path: " ../.tauri/tauri-api " )
20+ ] ,
21+ targets: [
22+ // Targets are the basic building blocks of a package. A target can define a module or a test suite.
23+ // Targets can depend on other targets in this package, and on products in packages this package depends on.
24+ . target(
25+ name: " tauri-plugin- devtools" ,
26+ dependencies: [
27+ . byName( name: " Tauri " )
28+ ] ,
29+ path: " Sources " )
30+ ]
3131)
You can’t perform that action at this time.
0 commit comments