diff options
author | Robin Lambertz <github@roblab.la> | 2018-01-14 14:40:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-14 14:40:26 +0100 |
commit | e9e511ca044f64dbeea45bb1783be1e949475bae (patch) | |
tree | d1009f59fa7fca82375d34b17c54d150cd88f824 /CMakeLists.txt | |
parent | feae1c4c323abb0ef79e0e43230ddf0d9af7311c (diff) |
Fix compilation on case-sensitive OSX
When compiling on a case-sensitive filesystem on OSX, cmake doesn't find
the FindUnicorn file, because it looks for Findunicorn.cmake. We should
uses the correct case to avoid this issue.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a31fb5793..09fe9bcd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -216,7 +216,7 @@ if (YUZU_USE_BUNDLED_UNICORN) 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) + find_package(Unicorn REQUIRED) endif() if (UNICORN_FOUND) |