diff options
author | Simon Ser <contact@emersion.fr> | 2022-11-25 17:36:24 +0100 |
---|---|---|
committer | Alexander Orzechowski <alex@ozal.ski> | 2022-12-06 22:39:45 +0000 |
commit | 6c897756b6340d098f50eeb0da0d39abda87fdda (patch) | |
tree | 9e0f224e37eb9390020c62e65300aa5610939958 /include/xwayland | |
parent | afe1ae4479a680cebfc5b12d9b5dbafefbd73395 (diff) |
build: use a configuration file for internal features
This avoids re-building the whole project when switching one
Meson option. This shrinks down the compiler invocation command
line, making it more readable and making it easier to inspect
which flags are passed in (the generated file can be opened).
Additionally this is more consistent with our external feature
handling, which uses <wlr/config.h> already.
Diffstat (limited to 'include/xwayland')
-rw-r--r-- | include/xwayland/xwm.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/xwayland/xwm.h b/include/xwayland/xwm.h index 391e09ab..7ed97b15 100644 --- a/include/xwayland/xwm.h +++ b/include/xwayland/xwm.h @@ -5,10 +5,12 @@ #include <wlr/config.h> #include <wlr/xwayland.h> #include <xcb/render.h> +#include "config.h" +#include "xwayland/selection.h" + #if HAS_XCB_ERRORS #include <xcb/xcb_errors.h> #endif -#include "xwayland/selection.h" /* This is in xcb/xcb_event.h, but pulling xcb-util just for a constant * others redefine anyway is meh |