mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-22 07:55:41 -04:00

- Reliable resolution switching. - Hook up logging. - Memory cards and controller type settings. - Save state support. - Direct3D support.
22 lines
440 B
CMake
22 lines
440 B
CMake
add_subdirectory(common)
|
|
add_subdirectory(common-tests)
|
|
add_subdirectory(core)
|
|
add_subdirectory(scmversion)
|
|
|
|
if(ANDROID OR BUILD_SDL_FRONTEND OR BUILD_QT_FRONTEND OR BUILD_LIBRETRO_CORE)
|
|
add_subdirectory(frontend-common)
|
|
endif()
|
|
|
|
if(BUILD_SDL_FRONTEND)
|
|
add_subdirectory(duckstation-sdl)
|
|
endif()
|
|
|
|
if(BUILD_QT_FRONTEND)
|
|
add_subdirectory(duckstation-qt)
|
|
endif()
|
|
|
|
if(BUILD_LIBRETRO_CORE)
|
|
add_subdirectory(duckstation-libretro)
|
|
endif()
|
|
|