forked from AlexanderTar/LASwift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
30 lines (29 loc) · 868 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// swift-tools-version:4.0
// Package.swift
//
// Copyright (c) 2017 Alexander Taraymovich <[email protected]>
// All rights reserved.
//
// This software may be modified and distributed under the terms
// of the BSD license. See the LICENSE file for details.
import PackageDescription
let package = Package(
name: "LASwift",
products: [
.library(name: "LASwift", targets: ["LASwift"])
],
dependencies: [
.package(url: "https://github.com/Quick/Quick.git", from: "3.0.0"),
.package(url: "https://github.com/Quick/Nimble.git", from: "9.0.0")
],
targets: [
.target(
name: "LASwift",
dependencies: [],
path: "Sources"),
.testTarget(
name: "LASwiftTests",
dependencies: ["LASwift", "Quick", "Nimble"],
path: "Example/Tests")
]
)