Renamed the package.
This commit is contained in:
@@ -5,12 +5,12 @@ import PackageDescription
|
||||
import CoreGraphics
|
||||
|
||||
let package = Package(
|
||||
name: "SwiftMathRender",
|
||||
name: "SwiftMath",
|
||||
products: [
|
||||
// Products define the executables and libraries a package produces, and make them visible to other packages.
|
||||
.library(
|
||||
name: "SwiftMathRender",
|
||||
targets: ["SwiftMathRender"]),
|
||||
name: "SwiftMath",
|
||||
targets: ["SwiftMath"]),
|
||||
],
|
||||
dependencies: [
|
||||
// Dependencies declare other packages that this package depends on.
|
||||
@@ -20,13 +20,13 @@ let package = Package(
|
||||
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
|
||||
// Targets can depend on other targets in this package, and on products in packages this package depends on.
|
||||
.target(
|
||||
name: "SwiftMathRender",
|
||||
name: "SwiftMath",
|
||||
dependencies: [],
|
||||
resources: [
|
||||
.copy("mathFonts.bundle")
|
||||
]),
|
||||
.testTarget(
|
||||
name: "SwiftMathRenderTests",
|
||||
dependencies: ["SwiftMathRender"]),
|
||||
name: "SwiftMathTests",
|
||||
dependencies: ["SwiftMath"]),
|
||||
]
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user