mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-30 09:35:40 +00:00
32 lines
568 B
CMake
32 lines
568 B
CMake
if(BUILD_LIBRETRO_CORE)
|
|
add_definitions("-DLIBRETRO=1")
|
|
endif()
|
|
|
|
add_subdirectory(common)
|
|
add_subdirectory(core)
|
|
add_subdirectory(scmversion)
|
|
|
|
if(NOT BUILD_LIBRETRO_CORE)
|
|
add_subdirectory(frontend-common)
|
|
endif()
|
|
|
|
if(NOT BUILD_LIBRETRO_CORE AND 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_LIBRETRO_CORE)
|
|
add_subdirectory(duckstation-libretro)
|
|
endif()
|
|
|