Mercurial > public > stock-charts
comparison Package.swift @ 19:647d3a64ca3f
Update Package.swift
author | Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> |
---|---|
date | Wed, 28 Apr 2021 20:15:46 +0200 |
parents | 9f0b6b24c0e1 |
children | 24dfde3727c1 |
comparison
equal
deleted
inserted
replaced
18:136de51a74f2 | 19:647d3a64ca3f |
---|---|
6 /* | 6 /* |
7 https://swift.org/package-manager/ | 7 https://swift.org/package-manager/ |
8 */ | 8 */ |
9 | 9 |
10 let package = Package( | 10 let package = Package( |
11 name: "SwiftUICharts", | 11 name: "SwiftUI-InteractiveCharts", |
12 platforms: [ | 12 platforms: [ |
13 .iOS(.v14) | 13 .iOS(.v14) |
14 ], | 14 ], |
15 products: [ | 15 products: [ |
16 .library( | 16 .library( |
17 name: "InteractiveCharts", | 17 name: "InteractiveCharts", |
18 targets: ["InteractiveCharts"]), | 18 targets: ["SwiftUI-InteractiveCharts"]), |
19 ], | 19 ], |
20 dependencies: [ | 20 dependencies: [ |
21 | 21 |
22 ], | 22 ], |
23 targets: [ | 23 targets: [ |
24 .target( | 24 .target( |
25 name: "InteractiveCharts", | 25 name: "SwiftUI-InteractiveCharts", |
26 dependencies: []), | 26 dependencies: []), |
27 .testTarget( | 27 .testTarget( |
28 name: "InteractiveChartsTests", | 28 name: "SwiftUI-InteractiveChartsTests", |
29 dependencies: ["InteractiveCharts"]), | 29 dependencies: ["SwiftUI-InteractiveCharts"]), |
30 ] | 30 ] |
31 ) | 31 ) |