From 73d6071fb75c4f78d6fa9b0e6cdbb82bf3ddf8f4 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 066bfde..2353531 100644 --- a/src/lib/elementary/meson.build +++ b/src/lib/elementary/meson.build @@ -1083,6 +1083,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, -- 2.7.4