-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathPackage.swift
More file actions
18 lines (16 loc) · 821 Bytes
/
Package.swift
File metadata and controls
18 lines (16 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// swift-tools-version:5.1
import PackageDescription
let package = Package(name: "Reactor",
platforms: [.macOS(.v10_12),
.iOS(.v10),
.tvOS(.v10),
.watchOS(.v3)],
products: [.library(name: "Reactor",
targets: ["Reactor"]),
],
targets: [.target(name: "Reactor",
path: "Sources"),
.testTarget(name: "ReactorTests",
dependencies: ["Reactor"],
path: "Tests")],
swiftLanguageVersions: [.v5])