diff options
author | David <25727384+ogniK5377@users.noreply.github.com> | 2020-07-10 14:33:55 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-10 14:33:55 +1000 |
commit | df27813e76a6bad234b0fbdcef2c30f226a06997 (patch) | |
tree | 9a4f814c96f51fb36c6b047c29616e59bc1ed7cd | |
parent | e73c53fad1a48915622f4c2db2250847551e31bf (diff) | |
parent | 48aa076049f9c3ac05b32682027d48639cd72528 (diff) |
Merge pull request #4284 from ogniK5377/libusb-fix
cmake: Fix libusb builds breaking
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index cd40e5cfed..4619f33f42 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -330,6 +330,7 @@ elseif(SDL2_FOUND) endif() # Ensure libusb is properly configured (based on dolphin libusb include) +INCLUDE(FindPkgConfig) find_package(LibUSB) if (NOT LIBUSB_FOUND) add_subdirectory(externals/libusb) |