mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-04 18:45:43 -04:00

libretro have agreed to take over maintenance of the core. Please see their fork at https://github.com/libretro/duckstation if you wish to continue to use it.
21 lines
389 B
CMake
21 lines
389 B
CMake
add_subdirectory(common)
|
|
add_subdirectory(core)
|
|
add_subdirectory(scmversion)
|
|
|
|
add_subdirectory(common-tests)
|
|
if(WIN32)
|
|
add_subdirectory(updater)
|
|
endif()
|
|
|
|
if(ANDROID OR BUILD_SDL_FRONTEND OR BUILD_QT_FRONTEND)
|
|
add_subdirectory(frontend-common)
|
|
endif()
|
|
|
|
if(BUILD_SDL_FRONTEND)
|
|
add_subdirectory(duckstation-sdl)
|
|
endif()
|
|
|
|
if(BUILD_QT_FRONTEND)
|
|
add_subdirectory(duckstation-qt)
|
|
endif()
|