From d39b4575665386c6889787edc985f85295dfe29d Mon Sep 17 00:00:00 2001
From: Lioncash <mathew1800@gmail.com>
Date: Fri, 10 Jul 2020 01:18:37 -0400
Subject: [PATCH] CMakeLists: Use lower-case command names

Our convention uses lower-case command names, so this is just a
consistency change.
---
 CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 4619f33f4..a99d34e5b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -330,7 +330,7 @@ elseif(SDL2_FOUND)
 endif()
 
 # Ensure libusb is properly configured (based on dolphin libusb include)
-INCLUDE(FindPkgConfig)
+include(FindPkgConfig)
 find_package(LibUSB)
 if (NOT LIBUSB_FOUND)
     add_subdirectory(externals/libusb)