summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-01-14 19:20:03 +0100
committerGitHub <noreply@github.com>2018-01-14 19:20:03 +0100
commitd3f421b9a602e439463c960823a53a60d4958a76 (patch)
tree66949f7276a5d3b48646c33c2c69bcc1f5d203e6
parentMerge pull request #5 from Thog/fix/loader-file-type (diff)
parentFix compilation on case-sensitive OSX (diff)
downloadyuzu-d3f421b9a602e439463c960823a53a60d4958a76.tar
yuzu-d3f421b9a602e439463c960823a53a60d4958a76.tar.gz
yuzu-d3f421b9a602e439463c960823a53a60d4958a76.tar.bz2
yuzu-d3f421b9a602e439463c960823a53a60d4958a76.tar.lz
yuzu-d3f421b9a602e439463c960823a53a60d4958a76.tar.xz
yuzu-d3f421b9a602e439463c960823a53a60d4958a76.tar.zst
yuzu-d3f421b9a602e439463c960823a53a60d4958a76.zip
-rw-r--r--CMakeLists.txt2
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)