meson: do not build emotion generic loader on windows

this is not supported

Reviewed-by: Marcel Hollerbach <mail@marcel-hollerbach.de>
Differential Revision: https://phab.enlightenment.org/D8732
This commit is contained in:
Mike Blumenkrantz 2019-04-30 15:09:59 -04:00 committed by Marcel Hollerbach
parent 9922f08de0
commit 473dda76a1
2 changed files with 7 additions and 2 deletions

View File

@ -439,7 +439,9 @@ if get_option('eolian-bootstrap') == false
subdir(join_paths('src', 'bin', 'efl'))
subdir(join_paths('src', 'generic', 'evas'))
subdir(join_paths('src', 'generic', 'emotion'))
if sys_windows == false
subdir(join_paths('src', 'generic', 'emotion'))
endif
bindings = get_option('bindings')
bindings_order = ['luajit', 'cxx', 'mono']

View File

@ -1,11 +1,14 @@
emotion_loaders = [
'generic',
'gstreamer',
'gstreamer1',
'libvlc',
'xine'
]
if sys_windows == false
emotion_loaders += 'generic'
endif
foreach emotion_loader : emotion_loaders
generic_src = []
generic_deps = []