mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 01:29:42 -06:00
Merge pull request #4330 from ligfx/no_vulkan_on_mac
Don't build Vulkan video backend on macOS
This commit is contained in:
@ -236,7 +236,6 @@ set(LIBS
|
||||
sfml-network
|
||||
sfml-system
|
||||
videonull
|
||||
videovulkan
|
||||
videoogl
|
||||
videosoftware
|
||||
z
|
||||
@ -249,6 +248,10 @@ if(LIBUSB_FOUND)
|
||||
IPC_HLE/WII_IPC_HLE_Device_usb_bt_real.cpp)
|
||||
endif(LIBUSB_FOUND)
|
||||
|
||||
if(NOT APPLE)
|
||||
set(LIBS ${LIBS} videovulkan)
|
||||
endif()
|
||||
|
||||
set(LIBS ${LIBS} ${MBEDTLS_LIBRARIES})
|
||||
|
||||
if(WIN32)
|
||||
|
Reference in New Issue
Block a user