mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-19 03:33:56 +00:00
25 lines
836 B
CMake
25 lines
836 B
CMake
add_subdirectory(common)
|
|
add_subdirectory(emulator)
|
|
add_subdirectory(gdb-stub)
|
|
add_subdirectory(windows-emulator)
|
|
add_subdirectory(windows-gdb-stub)
|
|
add_subdirectory(backend-selection)
|
|
|
|
momo_add_subdirectory_and_get_targets("backends" BACKEND_TARGETS)
|
|
momo_targets_set_folder("backends" ${BACKEND_TARGETS})
|
|
|
|
if (NOT MOMO_BUILD_AS_LIBRARY)
|
|
add_subdirectory(analyzer)
|
|
add_subdirectory(debugger)
|
|
add_subdirectory(fuzzing-engine)
|
|
add_subdirectory(fuzzer)
|
|
add_subdirectory(windows-emulator-test)
|
|
if(WIN32 AND CMAKE_SIZEOF_VOID_P EQUAL 8)
|
|
momo_add_subdirectory_and_get_targets("tools" TOOL_TARGETS)
|
|
momo_targets_set_folder("tools" ${TOOL_TARGETS})
|
|
|
|
momo_add_subdirectory_and_get_targets("samples" SAMPLE_TARGETS)
|
|
momo_targets_set_folder("samples" ${SAMPLE_TARGETS})
|
|
endif()
|
|
endif()
|