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
15 lines
383 B
Swift
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")]
|
|
)
|