mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
16 lines
351 B
Meson
16 lines
351 B
Meson
rtp_progs = [
|
|
'server-alsasrc-PCMA',
|
|
'client-PCMA',
|
|
'client-rtpaux',
|
|
'server-rtpaux',
|
|
'client-rtpbundle',
|
|
'server-rtpbundle',
|
|
]
|
|
|
|
foreach prog : rtp_progs
|
|
executable(prog, prog + '.c',
|
|
dependencies: [gstrtp_dep, gst_dep, libm],
|
|
c_args : gst_plugins_good_args,
|
|
include_directories : [configinc],
|
|
install: false)
|
|
endforeach
|