dolphin/Source/Core/VideoBackends/CMakeLists.txt
Michael Maltese f301ebf780 Don't build Vulkan video backend on macOS
There's no official implementation of the Vulkan API,
and Dolphin currently isn't set-up to work with the
single, commercially-available third-party implementation.
2016-10-06 16:53:55 -07:00

7 lines
152 B
CMake

add_subdirectory(OGL)
add_subdirectory(Null)
add_subdirectory(Software)
if(NOT APPLE)
add_subdirectory(Vulkan)
endif()
# TODO: Add other backends here!