Mercurial > public > stock-charts
comparison Package.swift @ 13:fdab6510dc46
Add Package.swift
author | Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> |
---|---|
date | Wed, 28 Apr 2021 18:58:15 +0200 |
parents | |
children | 820202017183 |
comparison
equal
deleted
inserted
replaced
12:ef22b1458c15 | 13:fdab6510dc46 |
---|---|
1 // | |
2 // Package.swift | |
3 // InteractiveCharts | |
4 // | |
5 // Created by Dennis Concepción Martín on 28/4/21. | |
6 // | |
7 | |
8 import PackageDescription | |
9 | |
10 /* | |
11 https://swift.org/package-manager/ | |
12 */ | |
13 | |
14 let package = Package( | |
15 name: "SwiftUICharts", | |
16 platforms: [ | |
17 .iOS(.v14) | |
18 ], | |
19 products: [ | |
20 .library( | |
21 name: "InteractiveCharts", | |
22 targets: ["InteractiveCharts"]), | |
23 ], | |
24 dependencies: [ | |
25 | |
26 ], | |
27 targets: [ | |
28 .target( | |
29 name: "InteractiveCharts", | |
30 dependencies: []), | |
31 .testTarget( | |
32 name: "InteractiveChartsTests", | |
33 dependencies: ["InteractiveCharts"]), | |
34 ] | |
35 ) |