Skip to content

Commit

Permalink
Rename package to SpatialLIb
Browse files Browse the repository at this point in the history
Because apple now has a framework named Spatial
  • Loading branch information
eonist committed Oct 1, 2023
1 parent 5891d4d commit 1498522
Show file tree
Hide file tree
Showing 32 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@
import PackageDescription

let package = Package(
name: "Spatial", // The name of the package
name: "SpatialLib", // The name of the package
platforms: [.iOS(.v15), .macOS(.v12)], // The platforms the package supports
products: [
.library(
name: "Spatial", // The name of the library product
targets: ["Spatial"]) // The targets that the product depends on
name: "SpatialLib", // The name of the library product
targets: ["SpatialLib"]) // The targets that the product depends on
],
dependencies: [
],
targets: [
.target(
name: "Spatial", // The name of the target
name: "SpatialLib", // The name of the target
dependencies: [] // The dependencies of the target
),
.testTarget(
name: "SpatialTests", // The name of the test target
dependencies: ["Spatial"]) // The dependencies of the test target
dependencies: ["SpatialLib"]) // The dependencies of the test target
]
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion Tests/SpatialTests/SpatialTests.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Spatial
import SpatialLib
#if canImport(XCTest)
import XCTest

Expand Down

0 comments on commit 1498522

Please sign in to comment.