diff options
| author | 2018-01-14 14:40:26 +0100 | |
|---|---|---|
| committer | 2018-01-14 14:40:26 +0100 | |
| commit | e9e511ca044f64dbeea45bb1783be1e949475bae (patch) | |
| tree | d1009f59fa7fca82375d34b17c54d150cd88f824 | |
| parent | externals: Remove unused repos. (diff) | |
| download | yuzu-e9e511ca044f64dbeea45bb1783be1e949475bae.tar.gz yuzu-e9e511ca044f64dbeea45bb1783be1e949475bae.tar.xz yuzu-e9e511ca044f64dbeea45bb1783be1e949475bae.zip | |
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.
| -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) | |||
| 216 | set(LIBUNICORN_LIBRARY "${UNICORN_PREFIX}/lib/x64/unicorn_dynload.lib" CACHE PATH "Path to Unicorn library") | 216 | set(LIBUNICORN_LIBRARY "${UNICORN_PREFIX}/lib/x64/unicorn_dynload.lib" CACHE PATH "Path to Unicorn library") |
| 217 | set(UNICORN_DLL_DIR "${UNICORN_PREFIX}/lib/x64/" CACHE PATH "Path to unicorn.dll") | 217 | set(UNICORN_DLL_DIR "${UNICORN_PREFIX}/lib/x64/" CACHE PATH "Path to unicorn.dll") |
| 218 | else() | 218 | else() |
| 219 | find_package(unicorn REQUIRED) | 219 | find_package(Unicorn REQUIRED) |
| 220 | endif() | 220 | endif() |
| 221 | 221 | ||
| 222 | if (UNICORN_FOUND) | 222 | if (UNICORN_FOUND) |