Skip to content

Commit

Permalink
Support SPM
Browse files Browse the repository at this point in the history
  • Loading branch information
hoangtaiki committed Oct 20, 2019
1 parent 73e9844 commit aa03720
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// swift-tools-version:5.1
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "Spider",
platforms: [.macOS(.v10_12),
.iOS(.v10),
.tvOS(.v10),
.watchOS(.v3)
],
products: [
.library(
name: "Spider",
targets: ["Spider"])
],
dependencies: [
],
targets: [
.target(
name: "Spider",
dependencies: []),
.testTarget(
name: "SpiderTests",
dependencies: ["Spider"])
]
)

0 comments on commit aa03720

Please sign in to comment.