meosn build - go back to requires_e it's uses in main meson.build

This commit is contained in:
Carsten Haitzler 2017-08-11 14:35:24 +09:00
parent 77e4b72d2b
commit ead1be7bd6
1 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ deps_e = [
dep_elementary dep_elementary
] ]
req = ' '.join([ requires_e = ' '.join([
'eina >= 1.19.99', 'eina >= 1.19.99',
'eet', 'eet',
'ecore', 'ecore',
@ -407,7 +407,7 @@ if config_h.has('HAVE_WAYLAND') == true
'e_comp_wl.h' 'e_comp_wl.h'
] ]
deps_e += dep_wayland deps_e += dep_wayland
req = ' '.join([req, requires_wayland]) requires_e = ' '.join([requires_e, requires_wayland])
endif endif
if config_h.has('HAVE_WAYLAND_ONLY') == false if config_h.has('HAVE_WAYLAND_ONLY') == false
@ -418,7 +418,7 @@ if config_h.has('HAVE_WAYLAND_ONLY') == false
'e_xsettings.c' 'e_xsettings.c'
] ]
deps_e += dep_ecore_x deps_e += dep_ecore_x
req = ' '.join([req, 'ecore-x']) requires_e = ' '.join([requires_e, 'ecore-x'])
endif endif
install_headers( hdr, subdir: 'enlightenment' ) install_headers( hdr, subdir: 'enlightenment' )