Skip to content
Snippets Groups Projects
Commit 19ea351c authored by Alexandre Janniaux's avatar Alexandre Janniaux Committed by Hugo Beauzée-Luyssen
Browse files

contrib: vulkan-loader: remove dependency on xcb

Android exposes both HAVE_LINUX and HAVE_ANDROID, but the vulkan-loader
implementation on the OS likely supports only Android and shipping xcb
by default would require building all the xcb contribs.

Instead, only enable it when the Linux is not an Android.
parent 3d5eabea
No related branches found
Tags 3.4.3-beta02
1 merge request!2229contrib: vulkan-loader: remove dependency on xcb
Pipeline #241787 passed with stage
in 17 minutes and 30 seconds
......@@ -18,9 +18,11 @@ ifdef HAVE_ANDROID
PKGS_FOUND += vulkan-loader
endif
ifndef HAVE_ANDROID
ifdef HAVE_LINUX
DEPS_vulkan-loader += xcb $(DEPS_xcb)
endif
endif
VULKAN_LOADER_CONF := \
-DENABLE_STATIC_LOADER=ON \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment