-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.swift
26 lines (25 loc) · 1.12 KB
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "TestRunner", // The name of the package
platforms: [.iOS(.v17), .macOS(.v14)], // The platforms the package supports
products: [
.library(
name: "TestRunner", // The name of the library product
targets: ["TestRunner"]) // The targets that the product depends on
],
dependencies: [
// .package(url: "https://github.com/eonist/Iterator.git", branch: "master"), // The dependency on the Iterator package
// .package(url: "https://github.com/eonist/UITestSugar.git", branch: "master") // The dependency on the UITestSugar package
],
targets: [
.target(
name: "TestRunner", // The name of the target
dependencies: [/*"Iterator"*//*, "UITestSugar"*/], // The dependencies of the target
linkerSettings: [.linkedFramework("XCTest")] // The linker settings for the target
),
.testTarget(
name: "TestRunnerTests", // The name of the test target
dependencies: ["TestRunner"]) // The dependencies of the test target
]
)