dolphin/Source/Core/VideoBackends/CMakeLists.txt
Michael Maltese e041602416 CMake: remove references to D3D12
It's gone!
2017-05-26 01:16:04 -07:00

11 lines
196 B
CMake

add_subdirectory(OGL)
add_subdirectory(Null)
add_subdirectory(Software)
if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
add_subdirectory(D3D)
endif()
if(NOT APPLE)
add_subdirectory(Vulkan)
endif()