gstreamer: update translations
[platform/upstream/gstreamer.git] / subprojects / gst-rtsp-server / examples / meson.build
1 examples = [
2   'test-appsrc',
3   'test-appsrc2',
4   'test-auth',
5   'test-auth-digest',
6   'test-launch',
7   'test-mp4',
8   'test-multicast2',
9   'test-multicast',
10   'test-netclock',
11   'test-netclock-client',
12   'test-ogg',
13   'test-onvif-backchannel',
14   'test-onvif-client',
15   'test-onvif-server',
16   'test-readme',
17   'test-record-auth',
18   'test-record',
19   'test-replay-server',
20   'test-sdp',
21   'test-uri',
22   'test-video',
23   'test-video-rtx',
24 ]
25
26 foreach example : examples
27   executable(example, '@0@.c'.format(example),
28     c_args : rtspserver_args,
29     include_directories : rtspserver_incs,
30     dependencies : [gst_dep, gstapp_dep, gstnet_dep, gst_rtsp_server_dep],
31     install: false)
32 endforeach
33
34 cgroup_dep = dependency('libcgroup', version : '>= 0.26', required : false)
35 if cgroup_dep.found()
36   executable('test-cgroups', 'test-cgroups.c',
37     c_args : rtspserver_args,
38     include_directories : rtspserver_incs,
39     dependencies : [gst_dep, gstnet_dep, gst_rtsp_server_dep, cgroup_dep],
40     install: false)
41 endif