summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar David Marcec2020-07-10 14:02:44 +1000
committerGravatar David Marcec2020-07-10 14:02:44 +1000
commit48aa076049f9c3ac05b32682027d48639cd72528 (patch)
tree9a4f814c96f51fb36c6b047c29616e59bc1ed7cd
parentMerge pull request #4283 from lat9nq/fix-linux-nvidia-vulkan (diff)
downloadyuzu-48aa076049f9c3ac05b32682027d48639cd72528.tar.gz
yuzu-48aa076049f9c3ac05b32682027d48639cd72528.tar.xz
yuzu-48aa076049f9c3ac05b32682027d48639cd72528.zip
cmake: Fix libusb builds breaking
-rw-r--r--CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index cd40e5cfe..4619f33f4 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -330,6 +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)
333find_package(LibUSB) 334find_package(LibUSB)
334if (NOT LIBUSB_FOUND) 335if (NOT LIBUSB_FOUND)
335 add_subdirectory(externals/libusb) 336 add_subdirectory(externals/libusb)