Files
windows-user-space-emulator/deps/CMakeLists.txt
momo5502 68022ef501 Fixes
2025-04-14 20:16:24 +02:00

17 lines
381 B
CMake

if (NOT CMAKE_SYSTEM_NAME STREQUAL "Emscripten")
set(UNICORN_ARCH "x86" CACHE STRING "")
add_subdirectory(unicorn)
endif()
##########################################
add_library(reflect INTERFACE)
target_include_directories(reflect INTERFACE
"${CMAKE_CURRENT_LIST_DIR}/reflect"
)
##########################################
include(googletest.cmake)
include(zlib.cmake)