mirror of
https://github.com/stenzek/duckstation.git
synced 2025-06-10 21:37:20 +00:00
25 lines
434 B
CMake
25 lines
434 B
CMake
add_subdirectory(common)
|
|
add_subdirectory(util)
|
|
add_subdirectory(core)
|
|
add_subdirectory(scmversion)
|
|
|
|
if(WIN32 OR APPLE)
|
|
add_subdirectory(updater)
|
|
endif()
|
|
|
|
if(BUILD_QT_FRONTEND)
|
|
add_subdirectory(duckstation-qt)
|
|
endif()
|
|
|
|
if(BUILD_MINI_FRONTEND)
|
|
add_subdirectory(duckstation-mini)
|
|
endif()
|
|
|
|
if(BUILD_REGTEST)
|
|
add_subdirectory(duckstation-regtest)
|
|
endif()
|
|
|
|
if(BUILD_TESTS)
|
|
add_subdirectory(common-tests EXCLUDE_FROM_ALL)
|
|
endif()
|