-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathPackage.swift
34 lines (33 loc) · 981 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
31
32
33
34
// swift-tools-version:5.1
// 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",
platforms: [
.macOS(.v10_13), .iOS(.v12), .tvOS(.v12), .watchOS(.v6)
],
products: [
.library(name: "LASwift", targets: ["LASwift"])
],
dependencies: [
.package(url: "https://github.com/Quick/Quick.git", from: "5.0.0"),
.package(url: "https://github.com/Quick/Nimble.git", from: "10.0.0")
],
targets: [
.target(
name: "LASwift",
dependencies: [],
path: "Sources"),
.testTarget(
name: "LASwiftTests",
dependencies: ["LASwift", "Quick", "Nimble"],
path: "Tests")
],
swiftLanguageVersions: [.v5]
)