-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
19 lines (18 loc) · 778 Bytes
/
Copy pathPackage.swift
File metadata and controls
19 lines (18 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// swift-tools-version: 6.0
//
// iOS-only (UIKit). `swift build` / `swift test` target macOS and fail with "no such module
// 'UIKit'". Run the tests on any installed iOS simulator (list them with
// `xcrun simctl list devices available`):
// xcodebuild test -scheme TableViewControllerCoverKit -destination 'platform=iOS Simulator,name=iPhone 17'
import PackageDescription
let package = Package(
name: "TableViewControllerCoverKit",
platforms: [.iOS(.v15)],
products: [
.library(name: "TableViewControllerCoverKit", targets: ["TableViewControllerCoverKit"]),
],
targets: [
.target(name: "TableViewControllerCoverKit"),
.testTarget(name: "TableViewControllerCoverKitTests", dependencies: ["TableViewControllerCoverKit"]),
]
)