From f5ddcef340d35686095b0e72bb2e7685c4fe446f Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 4 Aug 2018 17:20:10 -0400 Subject: [PATCH] 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. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b5e026bb6..379cf14c1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -261,7 +261,7 @@ endif() # ====================================== IF (APPLE) - FIND_LIBRARY(COCOA_LIBRARY Cocoa) # Umbrella framework for everything GUI-related + find_library(COCOA_LIBRARY Cocoa) # Umbrella framework for everything GUI-related set(PLATFORM_LIBRARIES ${COCOA_LIBRARY} ${IOKIT_LIBRARY} ${COREVIDEO_LIBRARY}) if (CMAKE_CXX_COMPILER_ID STREQUAL Clang)