14 lines
310 B
Swift
14 lines
310 B
Swift
// swift-tools-version:4.2
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Path.swift",
|
|
products: [
|
|
.library(name: "Path", targets: ["Path"]),
|
|
],
|
|
targets: [
|
|
.target(name: "Path", path: "Sources"),
|
|
.testTarget(name: "PathTests", dependencies: ["Path"]),
|
|
]
|
|
)
|