-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
30 lines (27 loc) · 863 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:5.0
// This file is part of the Loobee package.
//
// (c) Andrey Savitsky <[email protected]>
//
// For the full copyright and license information, please view the LICENSE
// file that was distributed with this source code.
import PackageDescription
let package = Package(
name: "Loobee",
products: [
.library(name: "Loobee", targets: ["Loobee"])
],
targets: [
.target(
name: "Loobee",
dependencies: [],
swiftSettings: [
.unsafeFlags([
"-Xfrontend", "-warn-long-function-bodies=150",
"-Xfrontend", "-warn-long-expression-type-checking=150"
], .when(configuration: .debug))
]),
.testTarget(name: "LoobeeTests", dependencies: ["Loobee"])
],
swiftLanguageVersions: [.v5]
)