forked from Quick/Quick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
16 lines (15 loc) · 859 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import PackageDescription
let package = Package(
name: "Quick",
targets: [
Target(name: "QuickTests", dependencies: [.Target(name: "Quick"), .Target(name: "QuickTestHelpers")]),
Target(name: "QuickFocusedTests", dependencies: [.Target(name: "Quick"), .Target(name: "QuickTestHelpers")]),
Target(name: "QuickTestHelpers", dependencies: [.Target(name: "Quick")]),
],
// TODO: Once the `test` command has been implemented in the Swift Package Manager, this should be changed to
// be `testDependencies:` instead. For now it has to be done like this for the library to get linked with the test targets.
// See: https://github.com/apple/swift-evolution/blob/master/proposals/0019-package-manager-testing.md
dependencies: [
.Package(url: "https://github.com/briancroom/Nimble", majorVersion: 3)
]
)