mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
18 lines
270 B
CMake
18 lines
270 B
CMake
add_subdirectory(OGL)
|
|
add_subdirectory(Null)
|
|
add_subdirectory(Software)
|
|
|
|
if(WIN32)
|
|
add_subdirectory(D3DCommon)
|
|
add_subdirectory(D3D)
|
|
add_subdirectory(D3D12)
|
|
endif()
|
|
|
|
if(APPLE)
|
|
add_subdirectory(Metal)
|
|
endif()
|
|
|
|
if(ENABLE_VULKAN)
|
|
add_subdirectory(Vulkan)
|
|
endif()
|