From 473dda76a1299c38431e783e7b71092ef3c0d990 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 30 Apr 2019 15:09:59 -0400 Subject: [PATCH] meson: do not build emotion generic loader on windows this is not supported Reviewed-by: Marcel Hollerbach Differential Revision: https://phab.enlightenment.org/D8732 --- meson.build | 4 +++- src/modules/emotion/meson.build | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) 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 = []