Bläddra i källkod

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.
Robin Lambertz 8 år sedan
förälder
incheckning
e9e511ca04
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      CMakeLists.txt

+ 1 - 1
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)