summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2018-08-04 17:20:10 -0400
committerGravatar Lioncash2018-08-11 19:36:43 -0400
commit3d486fffed1bfc1edbb7910591c2bbf6eca0a54f (patch)
treee2fe09eeb26cc34fb85c6107ec2dc72b0d0890e1
parentCMakeLists: Change MSVC14 variable to MSVC_VERSION (diff)
downloadyuzu-3d486fffed1bfc1edbb7910591c2bbf6eca0a54f.tar.gz
yuzu-3d486fffed1bfc1edbb7910591c2bbf6eca0a54f.tar.xz
yuzu-3d486fffed1bfc1edbb7910591c2bbf6eca0a54f.zip
CMakeLists: lowercase find_library usage
The rest of the CMake script uses lowercase for commands (which is the general CMake style), making it more consistent with surrounding code.
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2fb13c628..e7fea4fbf 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -303,7 +303,7 @@ endif()
303# ====================================== 303# ======================================
304 304
305IF (APPLE) 305IF (APPLE)
306 FIND_LIBRARY(COCOA_LIBRARY Cocoa) # Umbrella framework for everything GUI-related 306 find_library(COCOA_LIBRARY Cocoa) # Umbrella framework for everything GUI-related
307 set(PLATFORM_LIBRARIES ${COCOA_LIBRARY} ${IOKIT_LIBRARY} ${COREVIDEO_LIBRARY}) 307 set(PLATFORM_LIBRARIES ${COCOA_LIBRARY} ${IOKIT_LIBRARY} ${COREVIDEO_LIBRARY})
308 308
309 if (CMAKE_CXX_COMPILER_ID STREQUAL Clang) 309 if (CMAKE_CXX_COMPILER_ID STREQUAL Clang)