From b7c3dba382588a071b89bdef675c807e1c8a3d52 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Sun, 29 Mar 2026 18:47:43 +0200 Subject: [PATCH] build: drop cage_heaers Listing header files is unnecessary, Meson already takes care of that. --- meson.build | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/meson.build b/meson.build index 91ba7ec..5f57990 100644 --- a/meson.build +++ b/meson.build @@ -93,28 +93,18 @@ cage_sources = [ 'seat.c', 'view.c', 'xdg_shell.c', -] - -cage_headers = [ configure_file(input: 'config.h.in', output: 'config.h', configuration: conf_data), - 'idle_inhibit_v1.h', - 'output.h', - 'seat.h', - 'server.h', - 'view.h', - 'xdg_shell.h', ] if conf_data.get('CAGE_HAS_XWAYLAND', 0) == 1 cage_sources += 'xwayland.c' - cage_headers += 'xwayland.h' endif executable( meson.project_name(), - cage_sources + cage_headers, + cage_sources, dependencies: [ wayland_server, wlroots,