Adapt for new repository
Some checks failed
CI / verify-linuxmain (push) Has been cancelled
CI / apple (macos-10.15, iOS) (push) Has been cancelled
CI / apple (macos-10.15, macOS) (push) Has been cancelled
CI / apple (macos-10.15, tvOS) (push) Has been cancelled
CI / apple (macos-10.15, watchOS) (push) Has been cancelled
CI / apple (macos-11, iOS) (push) Has been cancelled
CI / apple (macos-11, macOS) (push) Has been cancelled
CI / apple (macos-11, tvOS) (push) Has been cancelled
CI / apple (macos-11, watchOS) (push) Has been cancelled
CI / linux (swift:4.2) (push) Has been cancelled
CI / linux (swift:5.0) (push) Has been cancelled
CI / linux (swift:5.1) (push) Has been cancelled
CI / linux (swift:5.2) (push) Has been cancelled
CI / linux (swift:5.3) (push) Has been cancelled
CI / linux (swift:5.4) (push) Has been cancelled
CI / linux (swiftlang/swift:nightly-5.5) (push) Has been cancelled

This commit is contained in:
T. R. Bernstein
2025-09-30 12:13:17 +02:00
parent dbdc3aeef6
commit 5d164c34f3
10 changed files with 338 additions and 181 deletions

View File

@@ -2,13 +2,13 @@
import PackageDescription
let package = Package(
name: "Path.swift",
name: "swiftpm-pathkit",
products: [
.library(name: "Path", targets: ["Path"]),
.library(name: "PathKit", targets: ["PathKit"]),
],
targets: [
.target(name: "Path", path: "Sources"),
.testTarget(name: "PathTests", dependencies: ["Path"]),
.target(name: "PathKit", path: "Sources"),
.testTarget(name: "PathTests", dependencies: ["PathKit"]),
],
swiftLanguageVersions: [.v4, .v4_2, .version("5")]
)