From 4426cfc5f7d61a04b6a8a93d5c1c03b697ac5eeb Mon Sep 17 00:00:00 2001 From: David Marcec Date: Fri, 10 Jul 2020 14:02:44 +1000 Subject: [PATCH] cmake: Fix libusb builds breaking --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) 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)