mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
14 lines
307 B
Meson
14 lines
307 B
Meson
rtp_progs = [
|
|
'server-alsasrc-PCMA',
|
|
'client-PCMA',
|
|
'client-rtpaux',
|
|
'server-rtpaux',
|
|
]
|
|
|
|
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
|