Better naming
This commit is contained in:
@@ -4,21 +4,21 @@
|
||||
import PackageDescription
|
||||
|
||||
let package = Package(
|
||||
name: "units",
|
||||
name: "Units",
|
||||
products: [
|
||||
// Products define the executables and libraries a package produces, making them visible to other packages.
|
||||
.library(
|
||||
name: "units",
|
||||
targets: ["units"])
|
||||
name: "Units",
|
||||
targets: ["Units"])
|
||||
],
|
||||
targets: [
|
||||
// Targets are the basic building blocks of a package, defining a module or a test suite.
|
||||
// Targets can depend on other targets in this package and products from dependencies.
|
||||
.target(
|
||||
name: "units"),
|
||||
name: "Units"),
|
||||
.testTarget(
|
||||
name: "unitsTests",
|
||||
dependencies: ["units"]
|
||||
name: "UnitsTests",
|
||||
dependencies: ["Units"]
|
||||
),
|
||||
]
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user