cmake: Add Android libvulkan to the ignored system libraries

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7861>
This commit is contained in:
L. E. Segovia 2024-11-20 12:24:34 +00:00 committed by GStreamer Marge Bot
parent 5154f43b58
commit 51c6aa9e2f

View file

@ -259,7 +259,7 @@ find_library(GStreamer_LIBRARY
# Android: Ignore these libraries when constructing the IMPORTED_LOCATION
set(_gst_IGNORED_SYSTEM_LIBRARIES c c++ unwind m dl atomic)
if (ANDROID)
list(APPEND _gst_IGNORED_SYSTEM_LIBRARIES log GLESv2 EGL OpenSLES android)
list(APPEND _gst_IGNORED_SYSTEM_LIBRARIES log GLESv2 EGL OpenSLES android vulkan)
elseif(APPLE)
list(APPEND _gst_IGNORED_SYSTEM_LIBRARIES iconv resolv System)
endif()