diff options
author | David <25727384+ogniK5377@users.noreply.github.com> | 2020-07-10 17:07:10 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-10 17:07:10 +1000 |
commit | d7a2dc4cea36e2b6211de3b21eb6dc7a753b0859 (patch) | |
tree | 2d091fa1808da250159a9c064a37d13f954bb5e0 | |
parent | 0974533c966e58f36312ac79fc958ab0c5cc080b (diff) | |
parent | d39b4575665386c6889787edc985f85295dfe29d (diff) |
Merge pull request #4286 from lioncash/format
CMakeLists: Use lower-case command names
-rw-r--r-- | CMakeLists.txt | 2 |
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) 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) |