diff --git a/meson.build b/meson.build index e7cc475895..2595461c62 100644 --- a/meson.build +++ b/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'] diff --git a/src/modules/emotion/meson.build b/src/modules/emotion/meson.build index f16eaec262..0090ea7492 100644 --- a/src/modules/emotion/meson.build +++ b/src/modules/emotion/meson.build @@ -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 = []