Skip to content

Commit 00a430d

Browse files
fix: adjust library name for iOS (#284)
1 parent 9536431 commit 00a430d

1 file changed

Lines changed: 24 additions & 24 deletions

File tree

crates/devtools/ios/Package.swift

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,28 @@
44
import PackageDescription
55

66
let 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
)

0 commit comments

Comments
 (0)