mirror of
https://github.com/stenzek/duckstation.git
synced 2026-07-11 01:24:11 +02:00
20 lines
418 B
CMake
20 lines
418 B
CMake
add_subdirectory(common)
|
|
add_subdirectory(util)
|
|
add_subdirectory(core)
|
|
add_subdirectory(scmversion)
|
|
add_subdirectory(duckstation-qt)
|
|
|
|
if(APPLE)
|
|
add_subdirectory(updater)
|
|
endif()
|
|
|
|
if(BUILD_REGTEST)
|
|
add_subdirectory(duckstation-regtest)
|
|
endif()
|
|
|
|
if(BUILD_TESTS)
|
|
add_subdirectory(common-tests EXCLUDE_FROM_ALL)
|
|
add_subdirectory(core-tests EXCLUDE_FROM_ALL)
|
|
add_subdirectory(util-tests EXCLUDE_FROM_ALL)
|
|
endif()
|