diff options
author | bunnei <bunneidev@gmail.com> | 2018-01-14 13:20:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-14 13:20:03 -0500 |
commit | d3f421b9a602e439463c960823a53a60d4958a76 (patch) | |
tree | 66949f7276a5d3b48646c33c2c69bcc1f5d203e6 | |
parent | 1e9e598ed003fd9fbcdebe82909c4f0d947a4ada (diff) | |
parent | e9e511ca044f64dbeea45bb1783be1e949475bae (diff) |
Merge pull request #1 from roblabla/patch-1
Fix compilation on case-sensitive OSX
-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) |