From 01b81d068b462cfb21b3671897e17493e6940d26 Mon Sep 17 00:00:00 2001 From: flightlessmango Date: Sun, 7 Apr 2024 02:58:30 +0200 Subject: [PATCH] meson: compile opengl files regardless of x11/wayland --- src/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meson.build b/src/meson.build index 3d2d5e07..d996e425 100644 --- a/src/meson.build +++ b/src/meson.build @@ -145,12 +145,12 @@ if is_unixy 'loaders/loader_x11.cpp', 'shared_x11.cpp', ) + endif opengl_files += files( 'loaders/loader_glx.cpp', 'gl/inject_glx.cpp', ) - endif if get_option('with_wayland').enabled() pre_args += '-DHAVE_WAYLAND'