summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2020-07-10 01:18:37 -0400
committerGravatar Lioncash2020-07-10 01:18:40 -0400
commitd39b4575665386c6889787edc985f85295dfe29d (patch)
tree2d091fa1808da250159a9c064a37d13f954bb5e0
parentMerge pull request #4285 from ogniK5377/fmt-fix (diff)
downloadyuzu-d39b4575665386c6889787edc985f85295dfe29d.tar.gz
yuzu-d39b4575665386c6889787edc985f85295dfe29d.tar.xz
yuzu-d39b4575665386c6889787edc985f85295dfe29d.zip
CMakeLists: Use lower-case command names
Our convention uses lower-case command names, so this is just a consistency change.
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
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)
330endif() 330endif()
331 331
332# Ensure libusb is properly configured (based on dolphin libusb include) 332# Ensure libusb is properly configured (based on dolphin libusb include)
333INCLUDE(FindPkgConfig) 333include(FindPkgConfig)
334find_package(LibUSB) 334find_package(LibUSB)
335if (NOT LIBUSB_FOUND) 335if (NOT LIBUSB_FOUND)
336 add_subdirectory(externals/libusb) 336 add_subdirectory(externals/libusb)