mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 06:08:50 +00:00
CMake: Add option to enable/disable Vulkan video backend
This commit is contained in:
parent
908d6f8fa0
commit
f375ee72a2
4 changed files with 16 additions and 3 deletions
|
@ -1,7 +1,6 @@
|
|||
add_subdirectory(OGL)
|
||||
add_subdirectory(Null)
|
||||
add_subdirectory(Software)
|
||||
add_subdirectory(Vulkan)
|
||||
|
||||
if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
|
||||
add_subdirectory(D3DCommon)
|
||||
|
@ -9,3 +8,6 @@ if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
|
|||
add_subdirectory(D3D12)
|
||||
endif()
|
||||
|
||||
if(ENABLE_VULKAN)
|
||||
add_subdirectory(Vulkan)
|
||||
endif()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue