mirror of
https://github.com/FEX-Emu/FEX.git
synced 2024-12-11 16:28:21 +00:00
31 lines
687 B
CMake
31 lines
687 B
CMake
add_subdirectory(CommonTools)
|
|
|
|
if (NOT MINGW_BUILD)
|
|
if (BUILD_FEXCONFIG)
|
|
find_package(Qt6 COMPONENTS Qml Quick Widgets QUIET)
|
|
if (NOT Qt6_FOUND)
|
|
find_package(Qt5 COMPONENTS Qml Quick Widgets REQUIRED)
|
|
endif()
|
|
|
|
add_subdirectory(FEXConfig/)
|
|
endif()
|
|
|
|
if (ENABLE_GDB_SYMBOLS)
|
|
add_subdirectory(FEXGDBReader/)
|
|
endif()
|
|
|
|
add_subdirectory(FEXRootFSFetcher/)
|
|
add_subdirectory(FEXGetConfig/)
|
|
add_subdirectory(FEXServer/)
|
|
add_subdirectory(FEXBash/)
|
|
add_subdirectory(CodeSizeValidation/)
|
|
add_subdirectory(LinuxEmulation/)
|
|
|
|
add_subdirectory(FEXLoader/)
|
|
add_subdirectory(pidof/)
|
|
endif()
|
|
|
|
if (BUILD_TESTS)
|
|
add_subdirectory(TestHarnessRunner/)
|
|
endif()
|