-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
48 lines (46 loc) · 1.22 KB
/
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
43
44
45
46
47
48
// swift-tools-version:5.5
//
// DeallocTests.swift
// DeallocTests
//
// Created by Daniel Cech on 01/04/19.
// Copyright © 2019 DanielCech. All rights reserved.
//
import PackageDescription
let package = Package(
name: "DeallocTests",
platforms: [
.iOS(.v13)
],
products: [
.library(
name: "DeallocTests",
targets: ["DeallocTests"]
),
.library(
name: "DeallocTestsDIFree",
targets: ["DeallocTestsDIFree"]
),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/strvcom/ios-dependency-injection.git", from: "1.0.2")
],
targets: [
.target(
name: "DeallocTests",
dependencies: [.product(name: "DependencyInjection", package: "ios-dependency-injection")],
path: "Sources/DeallocTests"
),
.target(
name: "DeallocTestsDIFree",
path: "Sources/DeallocTestsDIFree"
),
.testTarget(
name: "DeallocTestsTests",
dependencies: ["DeallocTests"],
path: "Tests"
),
],
swiftLanguageVersions: [.v5]
)