Duckstation/src/CMakeLists.txt
Connor McLaughlin 419726f4cc Remove libretro core - core will now be maintained by libretro
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.
2021-01-08 01:37:59 +10:00

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()