mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-20 04:03:57 +00:00
21 lines
650 B
CMake
21 lines
650 B
CMake
add_subdirectory(common)
|
|
add_subdirectory(emulator)
|
|
add_subdirectory(gdb-stub)
|
|
add_subdirectory(unicorn-emulator)
|
|
add_subdirectory(windows-emulator)
|
|
add_subdirectory(windows-gdb-stub)
|
|
|
|
if (NOT MOMO_BUILD_AS_LIBRARY)
|
|
add_subdirectory(analyzer)
|
|
add_subdirectory(fuzzing-engine)
|
|
add_subdirectory(fuzzer)
|
|
add_subdirectory(windows-emulator-test)
|
|
if(WIN32)
|
|
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()
|