-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
36 lines (34 loc) · 834 Bytes
/
Package.swift
File metadata and controls
36 lines (34 loc) · 834 Bytes
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
35
36
// swift-tools-version:5.2
import PackageDescription
let package = Package(
name: "Networkable",
platforms: [
.macOS(.v10_10),
.iOS(.v8),
.tvOS(.v9),
.watchOS(.v2)
],
products: [
.library(
name: "Networkable",
targets: ["Networkable"]),
.library(
name: "Reachability",
targets: ["Reachability"]),
],
dependencies: [],
targets: [
.target(
name: "Networkable",
dependencies: []),
.testTarget(
name: "NetworkableTests",
dependencies: ["Networkable"]),
.target(
name: "Reachability",
dependencies: []),
.testTarget(
name: "ReachabilityTests",
dependencies: ["Reachability"]),
]
)