mirror of
https://github.com/libretro/RetroArch
synced 2025-04-10 15:45:19 +00:00
qb: Enable vulkan for Win32.
The check_lib function does not seem able to detect vulkan on windows, this replaces a hack in Makefile.common that does the same, but while allowing C89_BUILD=1 and --disable-vulkan to work.
This commit is contained in:
parent
5b944a0e65
commit
8287a961e4
@ -436,7 +436,12 @@ fi
|
|||||||
|
|
||||||
check_lib '' STRCASESTR "$CLIB" strcasestr
|
check_lib '' STRCASESTR "$CLIB" strcasestr
|
||||||
check_lib '' MMAP "$CLIB" mmap
|
check_lib '' MMAP "$CLIB" mmap
|
||||||
check_lib '' VULKAN -lvulkan vkCreateInstance
|
|
||||||
|
if [ "$HAVE_VULKAN" != "no" ] && [ "$OS" = 'Win32' ]; then
|
||||||
|
HAVE_VULKAN=yes
|
||||||
|
else
|
||||||
|
check_lib '' VULKAN -lvulkan vkCreateInstance
|
||||||
|
fi
|
||||||
|
|
||||||
check_pkgconf PYTHON python3
|
check_pkgconf PYTHON python3
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user