-
-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathPackage.swift
More file actions
23 lines (21 loc) · 766 Bytes
/
Package.swift
File metadata and controls
23 lines (21 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// swift-tools-version:5.7
import PackageDescription
let package = Package(
name: "TestSuites",
platforms: [
// This package doesn't work on macOS host, but should be able to be built for it
// for developing on Xcode. This minimum version requirement is to prevent availability
// errors for Concurrency API, whose runtime support is shipped from macOS 12.0
.macOS("12.0"),
],
products: [
.executable(
name: "BenchmarkTests", targets: ["BenchmarkTests"]
),
],
dependencies: [.package(name: "JavaScriptKit", path: "../../")],
targets: [
.target(name: "CHelpers"),
.executableTarget(name: "BenchmarkTests", dependencies: ["JavaScriptKit", "CHelpers"]),
]
)