Adjusted the naming of the library in the Package file.
CI / Build & test (macOS) (push) Has been cancelled
CI / Embedded Swift cross-compile (push) Has been cancelled
Documentation / deploy (push) Has been cancelled

This commit is contained in:
2026-07-25 12:02:55 +02:00
parent f6645d2613
commit 2e7ee12ec1
37 changed files with 75 additions and 57 deletions
+8 -8
View File
@@ -3,11 +3,11 @@
import PackageDescription
let package = Package(
name: "play-date",
name: "playdate-kit",
products: [
.library(
name: "PlayDate",
targets: ["PlayDate"]
name: "PlaydateKit",
targets: ["PlaydateKit"]
),
],
dependencies: [
@@ -26,17 +26,17 @@ let package = Package(
pkgConfig: "playdate"
),
.target(
name: "PlayDate",
name: "PlaydateKit",
dependencies: ["CPlaydate"],
path: "Sources/PlayDate",
path: "Sources/PlaydateKit",
swiftSettings: [
.enableUpcomingFeature("ApproachableConcurrency"),
],
),
.testTarget(
name: "PlayDateTests",
dependencies: ["PlayDate"],
path: "Tests/PlayDate",
name: "PlaydateKitTests",
dependencies: ["PlaydateKit"],
path: "Tests/PlaydateKit",
swiftSettings: [
.enableUpcomingFeature("ApproachableConcurrency"),
],