bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=1ad1ea84fd5a1b581326922b725b531479b72d4d
commit 1ad1ea84fd5a1b581326922b725b531479b72d4d Author: Mike Blumenkrantz <[email protected]> Date: Fri Apr 26 09:08:23 2019 -0400 meson: set HAVE_ELEMENTARY_WIN32 on windows this enables windows engine selections and other functionality Reviewed-by: Marcel Hollerbach <[email protected]> Differential Revision: https://phab.enlightenment.org/D8728 --- src/lib/elementary/meson.build | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/lib/elementary/meson.build b/src/lib/elementary/meson.build index e9cfb45c3c..6d40ca1cde 100644 --- a/src/lib/elementary/meson.build +++ b/src/lib/elementary/meson.build @@ -986,6 +986,11 @@ if get_option('cocoa') elementary_deps += ecore_cocoa endif +if sys_windows == true + config_h.set('HAVE_ELEMENTARY_WIN32', '1') + elementary_deps += ecore_win32 +endif + c = configure_file( output: 'Elementary_Options.h', install : true, --
