diff options
author | bunnei <bunneidev@gmail.com> | 2018-01-08 20:12:20 -0500 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-01-08 20:12:20 -0500 |
commit | 1b9ed033fc9bd8b69da74292c5b32e8b6d1ef218 (patch) | |
tree | f60e687aa47a3d1f62cf8b54782d5ed3ed159573 /CMakeLists.txt | |
parent | f10a304ecdc2457124d6333862bdaaa46577fe1e (diff) |
cmake: Use LIBUNICORN_* on Windows.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 6fc85bc37..19590f109 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -229,8 +229,8 @@ if (YUZU_USE_BUNDLED_UNICORN) endif() set(UNICORN_FOUND YES) - set(UNICORN_INCLUDE_DIR "${UNICORN_PREFIX}/include" CACHE PATH "Path to Unicorn headers") - set(UNICORN_LIBRARY "${UNICORN_PREFIX}/lib/x64/unicorn_dynload.lib" CACHE PATH "Path to Unicorn library") + set(LIBUNICORN_INCLUDE_DIR "${UNICORN_PREFIX}/include" CACHE PATH "Path to Unicorn headers") + set(LIBUNICORN_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() find_package(unicorn REQUIRED) |