From 1ad1ea84fd5a1b581326922b725b531479b72d4d Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 26 Apr 2019 09:08:23 -0400 Subject: [PATCH] meson: set HAVE_ELEMENTARY_WIN32 on windows this enables windows engine selections and other functionality Reviewed-by: Marcel Hollerbach 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,