feat: scaffold macOS native capture pipeline
This commit is contained in:
committed by
Etienne Lescot
parent
6018ba0fe1
commit
fbdc7d5697
@@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
import process from "node:process";
|
||||
|
||||
if (process.platform !== "darwin") {
|
||||
console.log("Skipping macOS ScreenCaptureKit helper build: host platform is not macOS.");
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
console.error(
|
||||
"macOS ScreenCaptureKit helper sources are not implemented yet. See docs/engineering/macos-native-recorder-roadmap.md.",
|
||||
);
|
||||
process.exit(1);
|
||||
Reference in New Issue
Block a user