Skip to content

Commit

Permalink
Add support for SPM
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Dinh committed Jul 1, 2021
1 parent 79e84ac commit a56a4c8
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// swift-tools-version:5.0
import PackageDescription

let package = Package(
name: "Dobby",
products: [
.library(name: "Dobby", targets: ["Dobby"])
],
targets: [
.target(name: "Dobby", path: "./Dobby"),
.testTarget(name: "DobbyTests", dependencies: ["Dobby"], path: "./DobbyTests")
],
swiftLanguageVersions: [
.v5
]
)

0 comments on commit a56a4c8

Please sign in to comment.