meson: there is no need for checking ecore here

fix T7768

Differential Revision: https://phab.enlightenment.org/D9574
This commit is contained in:
Marcel Hollerbach 2019-08-15 18:49:51 +02:00 committed by Stefan Schmidt
parent a6e679f830
commit 375f22931e
2 changed files with 1 additions and 6 deletions

View File

@ -31,7 +31,7 @@ if get_option('gstreamer') == true
examples = [
'ecore_pipe_gstreamer_example',
]
gstreamer = dependency('gstreamer-1.0')
foreach example : examples
executable(example, example + '.c', dependencies: [eina, ecore, gstreamer, ecore_file])
endforeach

View File

@ -195,11 +195,6 @@ if get_option('g-mainloop') == true
config_h.set('USE_G_MAIN_LOOP', '1')
endif
if get_option('gstreamer') == true
gstreamer = dependency('gstreamer-1.0')
ecore_deps += gstreamer
endif
if get_option('systemd') == true
ecore_deps += systemd
endif