|
|
@ -215,7 +215,7 @@ endif()
|
|
|
|
if (YUZU_USE_BUNDLED_UNICORN)
|
|
|
|
if (YUZU_USE_BUNDLED_UNICORN)
|
|
|
|
# Detect toolchain and platform
|
|
|
|
# Detect toolchain and platform
|
|
|
|
if (MSVC14 AND ARCHITECTURE_x86_64)
|
|
|
|
if (MSVC14 AND ARCHITECTURE_x86_64)
|
|
|
|
set(UNICORN_VER "unicorn-1.0.1-yuzu")
|
|
|
|
set(UNICORN_VER "unicorn-yuzu")
|
|
|
|
else()
|
|
|
|
else()
|
|
|
|
message(FATAL_ERROR "No bundled Unicorn binaries for your toolchain. Disable YUZU_USE_BUNDLED_UNICORN and provide your own.")
|
|
|
|
message(FATAL_ERROR "No bundled Unicorn binaries for your toolchain. Disable YUZU_USE_BUNDLED_UNICORN and provide your own.")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
@ -230,7 +230,8 @@ if (YUZU_USE_BUNDLED_UNICORN)
|
|
|
|
|
|
|
|
|
|
|
|
set(UNICORN_FOUND YES)
|
|
|
|
set(UNICORN_FOUND YES)
|
|
|
|
set(UNICORN_INCLUDE_DIR "${UNICORN_PREFIX}/include" CACHE PATH "Path to Unicorn headers")
|
|
|
|
set(UNICORN_INCLUDE_DIR "${UNICORN_PREFIX}/include" CACHE PATH "Path to Unicorn headers")
|
|
|
|
set(UNICORN_LIBRARY "${UNICORN_PREFIX}/lib/x64/unicorn_static.lib" CACHE PATH "Path to Unicorn library")
|
|
|
|
set(UNICORN_LIBRARY "${UNICORN_PREFIX}/lib/x64/unicorn_dynload.lib" CACHE PATH "Path to Unicorn library")
|
|
|
|
|
|
|
|
set(UNICORN_DLL_DIR "${UNICORN_PREFIX}/lib/x64/" CACHE PATH "Path to unicorn.dll")
|
|
|
|
else()
|
|
|
|
else()
|
|
|
|
find_package(unicorn REQUIRED)
|
|
|
|
find_package(unicorn REQUIRED)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|