File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -42,4 +42,7 @@ xcuserdata/
4242/* .gcno
4343
4444# # Test output
45- test_output
45+ test_output
46+
47+ # $ Swift Package Manager
48+ .build /
Original file line number Diff line number Diff line change 1+ // swift-tools-version:5.1
2+ //
3+ // Package.swift
4+ // Spy
5+ //
6+ // Created by Tomasz Lewandowski on 22/01/2020.
7+ // Copyright © 2020 AppUnite Sp. z o.o. All rights reserved.
8+ //
9+ import PackageDescription
10+
11+ let package = Package (
12+ name: " Visually " ,
13+ platforms: [
14+ . macOS( . v10_11) ,
15+ . iOS( . v8) ,
16+ . tvOS( . v9)
17+ ] ,
18+ products: [
19+ . library(
20+ name: " Visually " ,
21+ targets: [ " Visually " ] )
22+ ] ,
23+ targets: [
24+ . target(
25+ name: " Visually " ,
26+ dependencies: [ ] ,
27+ path: " Visually " ) ,
28+ . testTarget(
29+ name: " VisuallyTests " ,
30+ dependencies: [ " Visually " ] ,
31+ path: " VisuallyTests " )
32+ ]
33+ )
You can’t perform that action at this time.
0 commit comments