mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 09:41:07 +00:00
add gst-omx as a possible subproject
This commit is contained in:
parent
14de71cd96
commit
45d7f5f337
4 changed files with 11 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -2,6 +2,7 @@
|
||||||
gst-devtools
|
gst-devtools
|
||||||
gst-editing-services
|
gst-editing-services
|
||||||
gst-libav
|
gst-libav
|
||||||
|
gst-omx
|
||||||
gst-plugins-bad
|
gst-plugins-bad
|
||||||
gst-plugins-base
|
gst-plugins-base
|
||||||
gst-plugins-good
|
gst-plugins-good
|
||||||
|
@ -14,6 +15,7 @@ meson/
|
||||||
subprojects/gst-devtools/
|
subprojects/gst-devtools/
|
||||||
subprojects/gst-editing-services/
|
subprojects/gst-editing-services/
|
||||||
subprojects/gst-libav/
|
subprojects/gst-libav/
|
||||||
|
subprojects/gst-omx/
|
||||||
subprojects/gst-plugins-bad/
|
subprojects/gst-plugins-bad/
|
||||||
subprojects/gst-plugins-base/
|
subprojects/gst-plugins-base/
|
||||||
subprojects/gst-plugins-good/
|
subprojects/gst-plugins-good/
|
||||||
|
|
|
@ -55,6 +55,10 @@ if not get_option('disable_gst_libav')
|
||||||
subprojects += gst_libav
|
subprojects += gst_libav
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if not get_option('disable_gst_omx')
|
||||||
|
subprojects += ['gst-omx']
|
||||||
|
endif
|
||||||
|
|
||||||
if not get_option('disable_gst_devtools')
|
if not get_option('disable_gst_devtools')
|
||||||
if dependency('json-glib-1.0', required : false).found()
|
if dependency('json-glib-1.0', required : false).found()
|
||||||
subprojects += ['gst-devtools']
|
subprojects += ['gst-devtools']
|
||||||
|
|
|
@ -5,3 +5,4 @@ option('disable_gst_plugins_bad', type : 'boolean', value : false)
|
||||||
option('disable_gst_devtools', type : 'boolean', value : false)
|
option('disable_gst_devtools', type : 'boolean', value : false)
|
||||||
option('disable_gst_editing_services', type : 'boolean', value : false)
|
option('disable_gst_editing_services', type : 'boolean', value : false)
|
||||||
option('disable_rtsp_server', type : 'boolean', value : false)
|
option('disable_rtsp_server', type : 'boolean', value : false)
|
||||||
|
option('disable_gst_omx', type : 'boolean', value : true)
|
||||||
|
|
4
subprojects/gst-omx.wrap
Normal file
4
subprojects/gst-omx.wrap
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
[wrap-git]
|
||||||
|
directory=gst-omx
|
||||||
|
url=https://anongit.freedesktop.org/git/gstreamer/gst-omx.git
|
||||||
|
revision=master
|
Loading…
Reference in a new issue