Files
swiftpm-pathkit/Package.swift
T. R. Bernstein 5d164c34f3
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
Adapt for new repository
2025-09-30 17:25:19 +02:00

15 lines
383 B
Swift

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