mirror of
https://github.com/samsonjs/Peekaboo.git
synced 2026-04-24 14:37:39 +00:00
25 lines
No EOL
555 B
Swift
25 lines
No EOL
555 B
Swift
// swift-tools-version: 6.0
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "PeekabooTestHost",
|
|
platforms: [
|
|
.macOS(.v13)
|
|
],
|
|
products: [
|
|
.executable(
|
|
name: "PeekabooTestHost",
|
|
targets: ["PeekabooTestHost"]
|
|
)
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "PeekabooTestHost",
|
|
path: ".",
|
|
sources: ["TestHostApp.swift", "ContentView.swift"],
|
|
swiftSettings: [
|
|
.swiftLanguageMode(.v6)
|
|
]
|
|
)
|
|
]
|
|
) |