mirror of
https://gitlab.freedesktop.org/pipewire/wireplumber.git
synced 2025-12-22 18:00:04 +01:00
We have ended up not using them, so let's not carry them in the ABI of 0.4 We can always revert that, but let's first decide how these objects should be used
26 lines
544 B
Meson
26 lines
544 B
Meson
# disabled temporarily
|
|
if false
|
|
executable('audiotestsrc-play',
|
|
'audiotestsrc-play.c',
|
|
c_args : [
|
|
'-D_GNU_SOURCE',
|
|
'-DG_LOG_USE_STRUCTURED',
|
|
'-DG_LOG_DOMAIN="audiotestsrc-play"',
|
|
],
|
|
install: false,
|
|
dependencies : [giounix_dep, wp_dep, pipewire_dep],
|
|
)
|
|
endif
|
|
|
|
if wpipc_dep.found()
|
|
executable('wpipc-client',
|
|
'wpipc-client.c',
|
|
c_args : [
|
|
'-D_GNU_SOURCE',
|
|
'-DG_LOG_USE_STRUCTURED',
|
|
'-DG_LOG_DOMAIN="wpipc-client"',
|
|
],
|
|
install: false,
|
|
dependencies : [wpipc_dep, threads_dep],
|
|
)
|
|
endif
|