Add Swift Package Manager support.

This commit is contained in:
Matyáš Kříž 2018-04-07 15:45:08 +02:00 committed by Matyáš Kříž
parent 491ff8dff8
commit caf0db428f
1 changed files with 22 additions and 0 deletions

22
Package.swift Normal file
View File

@ -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"),
]
)