mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
13 lines
222 B
CMake
13 lines
222 B
CMake
add_subdirectory(OGL)
|
|
add_subdirectory(Null)
|
|
add_subdirectory(Software)
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
|
|
add_subdirectory(D3D)
|
|
add_subdirectory(D3D12)
|
|
endif()
|
|
|
|
if(NOT APPLE)
|
|
add_subdirectory(Vulkan)
|
|
endif()
|