-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathPackage.swift
42 lines (40 loc) · 907 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
31
32
33
34
35
36
37
38
39
40
41
42
// swift-tools-version:5.0
//
// LeakDetector.swift
// LeakDetector
//
// Created by Steve Dao on 01/04/19.
// Copyright © 2019 duyquang91. All rights reserved.
//
import PackageDescription
let package = Package(
name: "LeakDetector",
platforms: [
.iOS(.v8),
.macOS(.v10_10),
.tvOS(.v9),
.watchOS(.v2),
],
products: [
.library(
name: "LeakDetector",
targets: ["LeakDetector"]
),
],
dependencies: [
.package(url: "https://github.com/ReactiveX/RxSwift.git", from: "5.0.0")
],
targets: [
.target(
name: "LeakDetector",
dependencies: [],
path: "Sources"
),
.testTarget(
name: "LeakDetectorTests",
dependencies: ["LeakDetector"],
path: "Tests"
),
],
swiftLanguageVersions: [.v5]
)