Add Swift Package Manager support.
This commit is contained in:
parent
491ff8dff8
commit
caf0db428f
|
@ -0,0 +1,22 @@
|
|||
// 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"),
|
||||
]
|
||||
)
|
Loading…
Reference in New Issue