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
devs/lauromoura/pin-unpin
Mike Blumenkrantz 5 years ago committed by Marcel Hollerbach
parent 9922f08de0
commit 473dda76a1
  1. 4
      meson.build
  2. 5
      src/modules/emotion/meson.build

@ -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']

@ -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 = []

Loading…
Cancel
Save