23 lines
448 B
Swift
23 lines
448 B
Swift
// swift-tools-version:4.0
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Cuckoo",
|
|
products: [
|
|
.library(
|
|
name: "Cuckoo",
|
|
targets: ["Cuckoo"]),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Cuckoo",
|
|
dependencies: [],
|
|
path: "Source"),
|
|
.testTarget(
|
|
name: "CuckooTests",
|
|
dependencies: ["Cuckoo"],
|
|
path: "Tests"),
|
|
]
|
|
)
|