From beed3a05f77654cde82ab1d9cfef335c702525d8 Mon Sep 17 00:00:00 2001 From: Chun-wei Fan Date: Wed, 20 Oct 2021 14:55:18 +0800 Subject: clutter/meson.build: Fill in win32 config We forgot to put into clutter-config.h the Windows items, which means that we would actually build the Win32 parts in vain. --- clutter/meson.build | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/clutter/meson.build b/clutter/meson.build index 68cd5f1a6..0c34638a9 100644 --- a/clutter/meson.build +++ b/clutter/meson.build @@ -365,6 +365,12 @@ if enabled_backends.contains('mir') '#define CLUTTER_INPUT_MIR "mir"', ] endif +if enabled_backends.contains('win32') + clutter_config += [ + '#define CLUTTER_WINDOWING_WIN32 "win32"', + '#define CLUTTER_INPUT_WIN32 "win32"', + ] +endif clutter_config += '#define CLUTTER_INPUT_NULL "null"' clutter_config_h = configuration_data() -- cgit v1.2.1