2020-07-10 04:01:48 +00:00
|
|
|
if(BUILD_LIBRETRO_CORE)
|
|
|
|
add_definitions("-DLIBRETRO=1")
|
|
|
|
endif()
|
|
|
|
|
2019-09-09 07:01:26 +00:00
|
|
|
add_subdirectory(common)
|
2019-10-04 03:54:09 +00:00
|
|
|
add_subdirectory(core)
|
2020-04-16 15:56:11 +00:00
|
|
|
add_subdirectory(scmversion)
|
2019-11-27 15:55:33 +00:00
|
|
|
|
2020-07-07 08:54:02 +00:00
|
|
|
if(NOT BUILD_LIBRETRO_CORE)
|
|
|
|
add_subdirectory(common-tests)
|
2020-08-06 09:33:33 +00:00
|
|
|
if(WIN32)
|
|
|
|
add_subdirectory(updater)
|
|
|
|
endif()
|
2020-07-07 08:54:02 +00:00
|
|
|
endif()
|
|
|
|
|
2020-06-29 16:47:27 +00:00
|
|
|
if(ANDROID OR BUILD_SDL_FRONTEND OR BUILD_QT_FRONTEND OR BUILD_LIBRETRO_CORE)
|
2020-06-08 16:44:42 +00:00
|
|
|
add_subdirectory(frontend-common)
|
|
|
|
endif()
|
|
|
|
|
2019-12-31 06:17:17 +00:00
|
|
|
if(BUILD_SDL_FRONTEND)
|
2020-02-03 04:16:59 +00:00
|
|
|
add_subdirectory(duckstation-sdl)
|
2019-11-27 15:55:33 +00:00
|
|
|
endif()
|
2019-12-31 06:17:17 +00:00
|
|
|
|
|
|
|
if(BUILD_QT_FRONTEND)
|
|
|
|
add_subdirectory(duckstation-qt)
|
|
|
|
endif()
|
|
|
|
|
2020-06-08 16:44:42 +00:00
|
|
|
if(BUILD_LIBRETRO_CORE)
|
|
|
|
add_subdirectory(duckstation-libretro)
|
|
|
|
endif()
|
|
|
|
|