mirror of
https://github.com/linsa-io/linsa.git
synced 2026-01-12 12:20:23 +01:00
26 lines
717 B
Swift
26 lines
717 B
Swift
// swift-tools-version:5.9
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "stream-capture",
|
|
platforms: [.macOS(.v13)],
|
|
products: [
|
|
.executable(name: "stream-capture", targets: ["stream-capture"])
|
|
],
|
|
dependencies: [],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "stream-capture",
|
|
dependencies: [],
|
|
linkerSettings: [
|
|
.linkedFramework("ScreenCaptureKit"),
|
|
.linkedFramework("VideoToolbox"),
|
|
.linkedFramework("CoreMedia"),
|
|
.linkedFramework("CoreVideo"),
|
|
.linkedFramework("AVFoundation"),
|
|
.linkedFramework("Network"),
|
|
]
|
|
)
|
|
]
|
|
)
|