mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 01:31:03 +00:00
Add gst-rtsp-server
This commit is contained in:
parent
9a8ab306b7
commit
0b560fb187
4 changed files with 11 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -7,6 +7,7 @@ gst-plugins-base
|
|||
gst-plugins-good
|
||||
gst-plugins-ugly
|
||||
gst-python
|
||||
gst-rtsp-server
|
||||
gstreamer
|
||||
__pycache__
|
||||
meson/
|
||||
|
@ -18,5 +19,6 @@ subprojects/gst-plugins-base/
|
|||
subprojects/gst-plugins-good/
|
||||
subprojects/gst-plugins-ugly/
|
||||
subprojects/gst-python/
|
||||
subprojects/gst-rtsp-server/
|
||||
subprojects/gstreamer/
|
||||
subprojects/glib/
|
||||
|
|
|
@ -55,6 +55,10 @@ if not get_option('disable_gst_editing_services')
|
|||
subprojects += ['gst-editing-services']
|
||||
endif
|
||||
|
||||
if not get_option('disable_rtsp_server')
|
||||
subprojects += ['gst-rtsp-server']
|
||||
endif
|
||||
|
||||
python3 = find_program('python3')
|
||||
symlink = '''
|
||||
import os
|
||||
|
|
|
@ -4,3 +4,4 @@ option('disable_gst_plugins_ugly', type : 'boolean', value : false)
|
|||
option('disable_gst_plugins_bad', type : 'boolean', value : false)
|
||||
option('disable_gst_devtools', type : 'boolean', value : false)
|
||||
option('disable_gst_editing_services', type : 'boolean', value : false)
|
||||
option('disable_rtsp_server', type : 'boolean', value : false)
|
||||
|
|
4
subprojects/gst-rtsp-server.wrap
Normal file
4
subprojects/gst-rtsp-server.wrap
Normal file
|
@ -0,0 +1,4 @@
|
|||
[wrap-git]
|
||||
directory=gst-rtsp-server
|
||||
url=git://anongit.freedesktop.org/gstreamer/gst-rtsp-server
|
||||
revision=master
|
Loading…
Reference in a new issue