-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathPackage.swift
More file actions
23 lines (21 loc) · 863 Bytes
/
Package.swift
File metadata and controls
23 lines (21 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// swift-tools-version:5.2
import PackageDescription
let package = Package(
name: "Pure",
platforms: [
.macOS(.v10_10), .iOS(.v9), .tvOS(.v9), .watchOS(.v2)
],
products: [.library(name: "Pure", targets: ["Pure"])],
dependencies: [
.package(name: "Quick", url: "https://github.com/Quick/Quick.git", .branch("quickobjcruntime-umbrella-header")),
.package(url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "8.0.0")),
],
targets: [
.target(name: "Pure", dependencies: []),
.target(name: "PureStub", dependencies: ["Pure"]),
.target(name: "TestSupport", dependencies: ["Pure"]),
.testTarget(name: "PureTests", dependencies: ["Pure", "TestSupport", "Quick", "Nimble"]),
.testTarget(name: "PureStubTests", dependencies: ["PureStub", "TestSupport", "Quick", "Nimble"]),
],
swiftLanguageVersions: [.v5]
)