Skip to content

Commit

Permalink
PVLookup fix PVLogging dep
Browse files Browse the repository at this point in the history
Signed-off-by: Joseph Mattiello <[email protected]>
  • Loading branch information
JoeMatt committed Dec 29, 2024
1 parent 52c6f2c commit ef7be96
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions PVLookup/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ let package = Package(
.target(
name: "PVSQLiteDatabase",
dependencies: [
"PVLogging",
.product(name: "SQLite", package: "sqlite.swift"),
.product(name: "ZIPFoundation", package: "ZIPFoundation")
]
Expand All @@ -93,6 +94,7 @@ let package = Package(
.target(
name: "TheGamesDB",
dependencies: [
"PVLogging",
"PVSQLiteDatabase",
.product(name: "OpenAPIRuntime", package: "swift-openapi-runtime"),
// .product(name: "OpenAPIAsyncHTTPClient", package: "swift-openapi-async-http-client"),
Expand All @@ -113,6 +115,7 @@ let package = Package(
.target(
name: "libretrodb",
dependencies: [
"PVLogging",
"PVSQLiteDatabase",
"PVLookupTypes",
"PVPrimitives",
Expand All @@ -134,6 +137,7 @@ let package = Package(
.target(
name: "OpenVGDB",
dependencies: [
"PVLogging",
"PVSQLiteDatabase",
"Lighter",
"PVLookupTypes",
Expand All @@ -157,6 +161,7 @@ let package = Package(
.target(
name: "ShiraGame",
dependencies: [
"PVLogging",
"ROMMetadataProvider",
"PVSQLiteDatabase",
"PVLookupTypes",
Expand All @@ -177,7 +182,7 @@ let package = Package(

.target(
name: "ROMMetadataProvider",
dependencies: ["PVLookupTypes"]
dependencies: ["PVLookupTypes", "PVLogging"]
),


Expand All @@ -186,6 +191,7 @@ let package = Package(
.target(
name: "PVLookupTypes",
dependencies: [
"PVLogging",
"PVPrimitives",
]
),
Expand All @@ -194,12 +200,12 @@ let package = Package(

.testTarget(
name: "PVLookupTests",
dependencies: ["PVLookup"]
dependencies: ["PVLookup", "PVLogging"]
),

.testTarget(
name: "TheGamesDBTests",
dependencies: ["TheGamesDB", "PVLookup"]
dependencies: ["TheGamesDB", "PVLookup", "PVLogging"]
),
],
swiftLanguageModes: [.v5, .v6],
Expand Down

0 comments on commit ef7be96

Please sign in to comment.