Files
screen_cast/src/capture/meson.build
T
fegger 6f4c670aa8 feat(capture): add Phase 3 PipeWire capture stub and config string safety
Add a linkable CaptureFactory stub so the capture API can be consumed

without unresolved symbols. Change remaining config string_view fields to

std::string to prevent dangling references. Update handoff memory.
2026-09-07 10:08:02 +02:00

12 lines
407 B
Meson

# Phase 3 capture placeholder. libpipewire-0.3 will be added when the portal
# implementation is wired in.
sc_capture_sources = files('pipewire_capture.cpp')
# Built even though nothing links it yet, so the stub stays compile-clean.
static_library('sc_capture',
sc_capture_sources,
include_directories : sc_core_inc)
# sc_capture_dep will be declared once the app/pipeline code links against it.