mirror of
https://gitlab.freedesktop.org/pipewire/wireplumber.git
synced 2026-05-03 07:58:00 +02:00
23 lines
506 B
Meson
23 lines
506 B
Meson
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],
|
|
)
|
|
|
|
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
|