Skip to content

Commit

Permalink
update target name
Browse files Browse the repository at this point in the history
  • Loading branch information
jdmcd committed Jul 10, 2019
1 parent b33865f commit a8381af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ import PackageDescription
let package = Package(
name: "swift-log",
products: [
.library(name: "Logging", targets: ["Logging"]),
.library(name: "SwiftLogging", targets: ["SwiftLogging"]),
],
targets: [
.target(
name: "Logging",
name: "SwiftLogging",
dependencies: []
),
.testTarget(
name: "LoggingTests",
dependencies: ["Logging"]
dependencies: ["SwiftLogging"]
),
]
)

0 comments on commit a8381af

Please sign in to comment.