forked from nicklockwood/ShapeScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
22 lines (21 loc) · 734 Bytes
/
Package.swift
File metadata and controls
22 lines (21 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// swift-tools-version:5.1
import PackageDescription
let package = Package(
name: "ShapeScript",
platforms: [
.macOS(.v10_13),
.iOS(.v11),
.tvOS(.v11),
],
products: [
.library(name: "ShapeScript", targets: ["ShapeScript"]),
],
dependencies: [
.package(url: "https://github.com/nicklockwood/Euclid.git", .upToNextMinor(from: "0.5.17")),
.package(url: "https://github.com/nicklockwood/LRUCache.git", .upToNextMinor(from: "1.0.2")),
],
targets: [
.target(name: "ShapeScript", dependencies: ["Euclid", "LRUCache"], path: "ShapeScript"),
.testTarget(name: "ShapeScriptTests", dependencies: ["ShapeScript"], path: "ShapeScriptTests"),
]
)