From 57610e14f645c7e89970d8a08e21edc28dfa2549 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 6 Oct 2021 13:27:42 -0400 Subject: [PATCH] build: also remove wayland wsi flags from c++ build ...until aco stops exploding Reviewed-by: Dylan Baker Part-of: --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index c390dd8e83c..01959d6af49 100644 --- a/meson.build +++ b/meson.build @@ -416,7 +416,8 @@ endif if with_platform_wayland c_args += '-DVK_USE_PLATFORM_WAYLAND_KHR' - cpp_args += '-DVK_USE_PLATFORM_WAYLAND_KHR' + #add this once aco and other places can build with it + #cpp_args += '-DVK_USE_PLATFORM_WAYLAND_KHR' endif if with_platform_x11 c_args += ['-DVK_USE_PLATFORM_XCB_KHR', '-DVK_USE_PLATFORM_XLIB_KHR']