-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
21 lines (20 loc) · 926 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// swift-tools-version:5.3
import PackageDescription
var package = Package(
name: "IG",
platforms: [
.macOS(.v10_15), .iOS(.v13), .tvOS(.v13) //, .watchOS(.v6)
],
products: [
.library(name: "IG", targets: ["IG"])
],
dependencies: [
.package(url: "https://github.com/dehesa/sample-decimals-swift.git", from: "0.1.1"),
.package(url: "https://github.com/dehesa/package-conbini.git", from: "0.6.2"),
],
targets: [
.binaryTarget(name: "Lightstreamer", url:"https://github.com/dehesa/IG/releases/download/0.11.2/Lightstreamer-2.1.3.zip", checksum: "5ca52be497d0a35cd05b3c5db0e9fc02be5d3c365ed048fa5b89432b3354256b"),
.target(name: "IG", dependencies: ["Decimals", "Conbini", "Lightstreamer"], path: "sources"),
.testTarget(name: "IGTests", dependencies: ["IG", .product(name: "ConbiniForTesting", package: "Conbini")], path: "tests"),
]
)