mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-03-06 14:27:44 +00:00
19 lines
328 B
CMake
19 lines
328 B
CMake
add_subdirectory(common)
|
|
add_subdirectory(core)
|
|
add_subdirectory(scmversion)
|
|
|
|
add_subdirectory(common-tests)
|
|
if(WIN32)
|
|
add_subdirectory(updater)
|
|
endif()
|
|
|
|
add_subdirectory(frontend-common)
|
|
|
|
if(BUILD_NOGUI_FRONTEND)
|
|
add_subdirectory(duckstation-nogui)
|
|
endif()
|
|
|
|
if(BUILD_QT_FRONTEND)
|
|
add_subdirectory(duckstation-qt)
|
|
endif()
|