mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-04-26 12:45:42 -04:00
24 lines
415 B
CMake
24 lines
415 B
CMake
add_subdirectory(common)
|
|
add_subdirectory(util)
|
|
add_subdirectory(core)
|
|
add_subdirectory(scmversion)
|
|
|
|
if(NOT ANDROID)
|
|
add_subdirectory(common-tests)
|
|
if(WIN32)
|
|
add_subdirectory(updater)
|
|
endif()
|
|
endif()
|
|
|
|
if(BUILD_NOGUI_FRONTEND)
|
|
add_subdirectory(duckstation-nogui)
|
|
endif()
|
|
|
|
if(BUILD_QT_FRONTEND)
|
|
add_subdirectory(duckstation-qt)
|
|
endif()
|
|
|
|
if(BUILD_REGTEST)
|
|
add_subdirectory(duckstation-regtest)
|
|
endif()
|